kaldin

  • Login

C Programming


1) Which header file should you include, if you are going to develop a function, which can accept variable number of arguments?
  • A)

  • B)

  • C)

  • D)

Next
Show Answer:
Show Answer


More Question
In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators.
How many times the program will print FutureC #includestdio.hint main() printf(FutureC); main(); return 0;
What will be the output of the program #includestdio.hint main() int i=4, j=8; printf(d, d, d\n, ij&ji, ij&ji, i^j); return 0;
Point out the error in the following program. #includestdio.h#includestdarg.hvoid varfun(int n, ...);int main() varfun(3, 7, -11.2, 0.66); return 0;void varfun(int n, ...) float ptr; int num; va_start(ptr, n); num = va_arg(ptr, int); printf(d, num);
The library function used to find the last occurrence of a character in a string is