C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} M None of these Good Morning Morning Good M None of these Good Morning Morning Good ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} hello 5 None of These Error hello garbage value hello 5 None of These Error hello garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 Compilation Error 33 1 -1 0 Compilation Error 33 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} void fun(int *p[3][4]){} None of these void fun(int p[][4]){} void fun(int *p[][4]){} void fun(int *p[4]){} void fun(int *p[3][4]){} None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to infinite -10 to -1 Complier error -10 to 0 -10 to infinite -10 to -1 Complier error -10 to 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 45445 45545 54554 54544 45445 45545 54554 ANSWER DOWNLOAD EXAMIANS APP