35.
The source filename and line number come from the preprocessor macros . . . . . . . . and . . . . . . . .

36.
What will the given C code do?
#include <stdlib.h> 
_Mbsave_Mbxlen={0};
int (mblen)(const char *s ,size_t n)
{
return(_Mbtowc(NULL s,n,&_Mbxlen));
}

37.
Which of the given statement is true with respect to the function atexit()?

38.
What will be the output of the following C code?
#include <assert. h> 
#include <stdio . h>
 #include <stdlib.h> 
void -Assert (char *mesg) 
{
   fputs (mesg, stderr); 
   fputs (" -- assertion failed\n" , stderr); 
   abort () ; 
}

39.
Which is the true statement with respect to the function longjmp()?

Read More Section(Standard Library Functions)

Each Section contains maximum 100 MCQs question on Standard Library Functions. To get more questions visit other sections.