71.
What will be the output of the following C code, if the system date is 6/24/2017?
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main()
{
    time_t ct;
    time(&ct);
    printf("%s\n",(&ct));
}

73.
Which of the given statement is not true with respect to void longjmp( jmp-buf env, int val)?

74.
void free(void *p) performs which of the following functions?

77.
The pointer used in the mblen() function points to the . . . . . . . .

78.
What is the role of the given C function?
void va_end(va_list ap)

80.
Correct code to turn assertions OFF at various places throughout a source file is . . . . . . . .

Read More Section(Standard Library Functions)

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