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
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;
What will be the output of the program #includestdio.hint main() char p; p=hello; printf(s\n, &&p); return 0;
What will be the output of the program #includestdio.hint main() int i=2; printf(d, d\n, ++i, ++i); return 0;
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;
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;