Standard Library Functions MCQs

250 questionsC-ProgramPage 8 of 28

Practice free Standard Library Functions multiple-choice questions with instant answer feedback and step-by-step solutions. Click an option to check yourself, reveal the full explanation, and work through all 250 questions — no login required.

Question 64easy
Which statement is correct work reference to endptr?
double strtod(const char *nptr, char **endptr);
Question 65easy
Which of the following is the correct syntax of the function strtoul()?
Question 66easy
A less common use of setjmp.h is to create syntax similar to . . . . . . . .
Advertisement
Question 67easy
What will be the output of the following C code?
double x=1.2
printf("%.1lf", ceil(x));
Question 68easy
Which of the given function differs from the statement'errno is not neccessarily set on conversion error'?
Question 69easy
The macro MB_LEN_MAX is used to find . . . . . . . .
Advertisement
Question 70easy
Which function is called by macro assert to terminate the execution?
Question 71easy
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));
}
Question 72easy
The macro which is used to find the maximum value of an unsigned integer is . . . . . . . .
Standard Library Functions MCQs with Answers & Solutions — C-Program | GrabStudy