1.

Which of the following is the correct syntax for calling function ungetc?
Assume int c and FILE *fp

A. ungetc(*fp,c);
B. ungetc(c,*fp);
C. ungetc(c, fp);
D. ungetc(fp, c);
E. None of these
Answer» D. ungetc(fp, c);


Discussion

No Comment Found

Related MCQs