C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} hi friends hj grjeodt ij!gsjfoet None of These hi friends hj grjeodt ij!gsjfoet None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these Morning Good Good Morning M None of these Morning Good Good Morning M ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language System programming language None of these General purpose language Data processing language System programming language None of these General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 6 It will not compile because not enough initializers are given 12 24 7 6 It will not compile because not enough initializers are given 12 24 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 0 6 10 1 None of these 0 6 10 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} Compiler Error None of These 12PP345 12PP Compiler Error None of These 12PP345 12PP ANSWER DOWNLOAD EXAMIANS APP