C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 2 Compiler Error Linker Error 20 2 Compiler Error Linker Error 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");} 12PP None of These Compiler Error 12PP345 12PP None of These Compiler Error 12PP345 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} hi Garbage Value hi followed by garbage value h Error hi Garbage Value hi followed by garbage value h Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} 5 None of these 4 6 7 5 None of these 4 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} 10012 100 Runtime error Syntax error g##g2 10012 100 Runtime error Syntax error g##g2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 10, 24, 50 50, 13, 24, 13 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 50 13, 10, 24, 50 50, 13, 24, 13 50, 13, 11, 13 13, 13, 24, 13 50, 13, 24, 50 ANSWER DOWNLOAD EXAMIANS APP