Login
C Programming
1)
The keyword used to transfer control from a function back to the calling function is ?
A)
switch
B)
goto
C)
go back
D)
return
Next
Show Answer:
Show Answer
More Question
Which of the following errors would be reported by the compiler on compiling the program given below #includestdio.hint main() int a = 5; switch(a) case 1: printf(First); case 2: printf(Second); case 3 + 2: printf(Third); case 5: printf(Final); break; return 0;
Which of the following statements are correct about the function long fun(int num) int i; long f=1; for(i=1; i=num; i++) f = f i; return f;
What will be the output of the program #includestdio.hint main() int i=2; printf(d, d\n, ++i, ++i); return 0;
Bit fields CANNOT be used in union.
The library function used to find the last occurrence of a character in a string is