kaldin

  • Login

C Programming


8) The keyword used to transfer control from a function back to the calling function is ?
  • A)

  • B)

  • C)

  • D)

Previous Next
Show Answer:
Show Answer


More Question
How many times the program will print FutureC #includestdio.hint main() printf(FutureC); main(); return 0;
A preprocessor directive is a message from programmer to the preprocessor.
What will be the output of the program #includestdio.hint main() int i=2; printf(d, d\n, ++i, ++i); return 0;
Which of the statements is correct about the program #includestdio.hint main() float a=3.14; char j; j = (char)&a; printf(d\n, j); return 0;
The library function used to find the last occurrence of a character in a string is