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");} None of These 12PP345 12PP Compiler Error None of These 12PP345 12PP Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff4 fff3 fff1 fff0 fff2 fff4 fff3 fff1 fff0 fff2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 444 Garbage Value 433 000 333 444 Garbage Value 433 000 333 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 6 5 9 8 7 6 5 9 8 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? ++ && || + % ++ && || + % ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is illegal is syntactically and semantically correct None of these. is legal but meaningless is illegal is syntactically and semantically correct None of these. is legal but meaningless ANSWER DOWNLOAD EXAMIANS APP