adplus-dvertising
frame-decoration

Question

Which of the following the is the correct declaration for ungetc?

a.

int ungetc(int c, FILE fp);

b.

int ungetc(int *c, FILE fp);

c.

int ungetc(int c, FILE *fp);

d.

int ungetc(int *c, FILE *fp);

Posted under C Programming

Answer: (c).int ungetc(int c, FILE *fp);

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following the is the correct declaration for ungetc?

Similar Questions

Discover Related MCQs

Q. Which of the following cannot be used with ungetc?

Q. What does the ungetc function return for the following expression?
ungetc(c, fp); //where declarations are int c and FILE *fp

Q. int ungetc(int c, FILE *fp) returns

Q. Only _____character of pushback is guaranteed per file when ungetc is used.

Q. ungetc may be used with

Q. The syntax for ungetc is

Q. The function ____ obtains block of memory dynamically.

Q. void * malloc(size_t n) returns

Q. calloc() returns a storage that is initialized to

Q. In function free(p), p is a

Q. Memory allocation using malloc() is done in?

Q. Why do we write (int *) before malloc?
int *ip = (int *)malloc(sizeof(int));

Q. Which one is used during memory deallocation in C?

Q. Which of the following will return a result most quickly for searching a given key?

Q. On freeing a dynamic memory, if the pointer value is not modified, then the pointer points to

Q. calloc initialises memory with all bits set to zero.

Q. realloc(ptr, size), where size is zero means

Q. function fabs defined math.h header file takes argument of type integer

Q. log(x) function defined in math.h header file is

Q. What type of inputs are accepted by mathematical functions?