kaldin

  • Login

C Programming


1) In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators.
  • A)

  • B)

  • C)

  • D)

Next
Show Answer:
Show Answer


More Question
What is the notation for following functions 1. int f(int a, float b) / Some code /
What will be the output of the program #includestdio.hint main() char c=48; int i, mask=01; for(i=1; i=5; i++) printf(c, cmask); mask = mask1; return 0;
va_list is an array that holds information needed by va_arg and va_end.
Bit fields CANNOT be used in union.
Will the program compile in Turbo C #includestdio.hint main() int a=10, j; void k; j=k=&a; j++; k++; printf(u u\n, j, k); return 0;