92.
The header file setjmp.h is used to . . . . . . . .

95.
What will be the output of the following C code if the system date is 6/2/2017(Friday)?
#include<stdio.h>
#include<time.h>
int main()
{
    struct tm *local, *gm;
    time_t t;
    t=time(NULL);
    local=localtime(&t);
    printf("%d",local->tm_wday);
    return 0;
}

97.
void (*signal(int sig, void (*func)(int)))(int);If the value of func is SIG_IGN then . . . . . . . .

100.
Which statement is true regarding abs() and labs()?

Read More Section(Standard Library Functions)

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