#include stdio.hFind the output of the following code : -int main(){char arr[] = "LK sharma";printf("%s \n", arr);printf("%f", arr);return 0;}
What is the output of the following program?#includestdio.hint main(){int a=150;printf("%1d \n", a);return 0;}
#include stdio.hint main(){signed char chr;chr = 128;printf("%d\n", chr);return 0;}