C Programming The default parameter passing mechanism is call by value call by value result call by reference None of these. call by value call by value result call by reference None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 None of these 0 0 1 1 0 1 1 0 None of these 0 0 1 1 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} Error None of these 9 6 5 Error None of these 9 6 5 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 9 5 8 7 6 9 5 8 7 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 III I and II I and III III and IV II and IV II and III I and II I and III III and IV II and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on R-values Both of the above Members of a structure Arithmetic expressions Local variables R-values Both of the above Members of a structure Arithmetic expressions Local variables ANSWER DOWNLOAD EXAMIANS APP