Q201
Open questionSelect an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
250
Questions
11/13
Page
Pick an option on a question to see the right answer and solution.
Q201
Open questionSelect an option to see the answer and solution.
Q202
Open question#include<stdio.h>
#include<time.h>
int main()
{
struct tm *local;
time_t t;
t=time(NULL);
local=asctime(localtime(&t));
printf("%d",local->tm_wday);
return 0;
}Select an option to see the answer and solution.
Q203
Open questionSelect an option to see the answer and solution.
Q204
Open questionchar word[20 ] = "1.234555 WELCOME";
char *w; double dis;
dis= strtod(word, &w);
printf("The number is %lf\n", dis);
printf("String is |%s|", w);Select an option to see the answer and solution.
Q205
Open questionSelect an option to see the answer and solution.
Q206
Open questionSelect an option to see the answer and solution.
Q207
Open questionSelect an option to see the answer and solution.
Q208
Open questionSelect an option to see the answer and solution.
Q209
Open questionSelect an option to see the answer and solution.
Q210
Open questionSelect an option to see the answer and solution.
Q211
Open question#include <stdio.h>
#include <limits.h>
int main()
{
printf("The minimum value of LONG = %lf\n", LONG_MIN);
return 0;
}Select an option to see the answer and solution.
Q212
Open questionSelect an option to see the answer and solution.
Q213
Open question#include<stdio.h>
#include<time.h>
int main()
{
struct tm *ptr;
time_t t;
char str[100];
t = time(NULL);
ptr = localtime(&t);
strftime(str,100,"%H %p %M minutes",ptr);
puts(str);
return 0;
}Select an option to see the answer and solution.
Q214
Open questionSelect an option to see the answer and solution.
Q215
Open questionSelect an option to see the answer and solution.
Q216
Open questionSelect an option to see the answer and solution.
Q217
Open questionSelect an option to see the answer and solution.
Q218
Open questionSelect an option to see the answer and solution.
Q219
Open questionSelect an option to see the answer and solution.
Q220
Open questionvoid *calloc(size_t n, size_t size)
#n -- This is the number of elements to be allocated.
#size -- This is the size of elements.Select an option to see the answer and solution.