

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct syntax for calling function ungetc?(Assume int c and FILE *fp) |
A. | ungetc(c,*fp); |
B. | ungetc(c, fp); |
C. | ungetc(fp, c); |
D. | ungetc(*fp,c); |
Answer» C. ungetc(fp, c); | |