C Programming The address operator &, cannot act on Arithmetic expressions Local variables Both of the above R-values Members of a structure Arithmetic expressions Local variables Both of the above R-values Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 216 – 1 215 None of these 215 – 1 216 216 – 1 215 None of these 215 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } ck te et ow ck te et ow ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} -2 Error 2 1 -2 Error 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} h hi hi followed by garbage value Garbage Value Error h hi hi followed by garbage value Garbage Value Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 None of these. 10 11 9 None of these. 10 11 ANSWER DOWNLOAD EXAMIANS APP