What will the function rewind() do?
Answer: D
No answer description available for this question.
Enter details here
The pointer used in the mblen() function points to the _________
Answer: A
No answer description available for this question.
Enter details here
What will be the output of the following C code?
int main ()
{
printf("starting of program\n");
printf("program exits\n");
exit(0);
printf("program ends\n");
return(0);
}
Answer: B
void exit(int status) function is used to terminate the calling process immediately.
Enter details here
Some types and macros defined under the header file stddef.h may be defined under other header files too.
Answer: A
No answer description available for this question.
Enter details here
What will function gcvt() do?
Answer: B
No answer description available for this question.
Enter details here
Which of the following is defined under the header file time.h?
Answer: D
No answer description available for this question.
Enter details here
Which statement is true with respect to RAND_MAX?
Answer: C
RAND_MAX specifies maximum value that has to returned by the function rand().
rand() function returns a pseudo-random number in the range 0 to RAND_MAX.
Enter details here
A type whose alignment requirement is at least as large as that of every data type:
Answer: D
No answer description available for this question.
Enter details here
The purpose of the function ctime() is that ___________
Answer: A
No answer description available for this question.
Enter details here