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
The keyword used to transfer control from a function back to the calling function is
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
How many times the while loop will get executed if a short int is 2 byte wide #includestdio.hint main() int j=1; while(j = 255) printf(c d\n, j, j); j++; return 0;
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 p; p=hello; printf(s\n, &&p); return 0;