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 The address operator &, cannot act on Both of the above Arithmetic expressions Members of a structure Local variables R-values Both of the above Arithmetic expressions Members of a structure Local variables R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 0 Garbage Value 3 1 2 0 Garbage Value 3 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 10 None of these. 11 9 10 None of these. 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ struct xx { int x=3; char name[] = "hello"; }; struct xx *s = malloc(sizeof(struct xx)); printf("%d", s->x); printf("%s", s->name); } 3 hello None of these Linking error Compiler Error 3 hello None of these Linking error Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Pick the correct statements.I. The body of a function should have only one return statement.II. The body of a function may have many return statements.III. A function can return only one value to the calling environment.IV. If return statement is omitted, then the function does its job but returns no value to the calling environment. III and IV I and II I and III II and III II and IV III and IV I and II I and III II and III II and IV ANSWER DOWNLOAD EXAMIANS APP