Q141
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.
296
Questions
8/15
Page
Pick an option on a question to see the right answer and solution.
Q141
Open questionSelect an option to see the answer and solution.
Q142
Open questionSelect an option to see the answer and solution.
Q143
Open questionSelect an option to see the answer and solution.
Q144
Open questionSelect an option to see the answer and solution.
Q145
Open questionSelect an option to see the answer and solution.
Q146
Open question#include <stdio.h>
#include <stdarg.h>
int f(...);
int main()
{
char c = 97;
f(c);
return 0;
}
int f(...)
{
va_list li;
char c = va_arg(li, char);
printf("%c\n", c);
}Select an option to see the answer and solution.
Q147
Open questionSelect an option to see the answer and solution.
Q148
Open questionSelect an option to see the answer and solution.
Q149
Open questionSelect an option to see the answer and solution.
Q150
Open questionSelect an option to see the answer and solution.
Q151
Open questionSelect an option to see the answer and solution.
Q152
Open question#include <stdio.h>
#include <math.h>
void main()
{
int k = sqrt(-4);
printf("%d\n", k);
}Select an option to see the answer and solution.
Q153
Open questionSelect an option to see the answer and solution.
Q154
Open question#include <stdio.h>
#include <ctype.h>
int main()
{
char i = 9;
if (isdigit(i))
printf("digit\n");
else
printf("not digit\n");
return 0;
}Select an option to see the answer and solution.
Q155
Open questionSelect an option to see the answer and solution.
Q156
Open questionSelect an option to see the answer and solution.
Q157
Open questionSelect an option to see the answer and solution.
Q158
Open questionSelect an option to see the answer and solution.
Q159
Open questionSelect an option to see the answer and solution.
Q160
Open questionSelect an option to see the answer and solution.