C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 0, 2 2, 2 4, 4 2, 4 2, 0 0, 2 2, 2 4, 4 2, 4 2, 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 1 100 Error 1 100 Error 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));} 000 433 Garbage Value 333 444 000 433 Garbage Value 333 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Local variables Both of the above Arithmetic expressions Members of a structure R-values Local variables Both of the above Arithmetic expressions Members of a structure R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 3 3 10 5 4 3 10 5 4 4 10 5 5 5 10 5 3 4 10 5 3 3 10 5 4 3 10 5 4 4 10 5 5 5 10 5 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 215 – 1 216 – 1 None of these 215 216 215 – 1 216 – 1 None of these ANSWER DOWNLOAD EXAMIANS APP