C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 1 1 2 2 None of these 0 1 2 3 0 1 2 2 1 1 2 3 1 1 2 2 None of these 0 1 2 3 0 1 2 2 1 1 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } absiha haasi None of these hai asiha absiha haasi None of these hai asiha ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Comma operator Division operator Assignment operator Unary-operator Conditional operator Comma operator Division operator Assignment operator Unary-operator Conditional operator 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. II and IV I and III II and III III and IV I and II II and IV I and III II and III III and IV I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by reference call by value result call by value None of these. call by reference call by value result call by value 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 Linking error Compiler Error None of these 3 hello Linking error Compiler Error None of these ANSWER DOWNLOAD EXAMIANS APP