Q261
Open questionif (isalpha(c) && isdigit(c))Select 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
14/15
Page
Pick an option on a question to see the right answer and solution.
Q261
Open questionif (isalpha(c) && isdigit(c))Select an option to see the answer and solution.
Q262
Open questionprintf("\n you are\"awesome \" ");Select an option to see the answer and solution.
Q263
Open question#include <stdio.h>
int main()
{
char *str = "hello, world\n";
printf("%d", strlen(str));
}Select an option to see the answer and solution.
Q264
Open questionSelect an option to see the answer and solution.
Q265
Open questionSelect an option to see the answer and solution.
Q266
Open questionscanf("%[^\n]s", ch);Select an option to see the answer and solution.
Q267
Open questionSelect an option to see the answer and solution.
Q268
Open question#include <stdio.h>
int main()
{
FILE *fp = stdout;
int n;
fprintf(fp, "%d ", 45);
fprintf(stderr, "%d ", 65);
return 0;
}Select an option to see the answer and solution.
Q269
Open question#include <stdio.h>
int main()
{
printf("%d\n", srand(9000));
return 0;
}Select an option to see the answer and solution.
Q270
Open questionSelect an option to see the answer and solution.
Q271
Open question#include <stdio.h>
int main()
{
short int i;
scanf("%hd", &i);
printf("%hd", i);
return 0;
}Select an option to see the answer and solution.
Q272
Open questionSelect an option to see the answer and solution.
Q273
Open question#include <stdio.h>
int main()
{
FILE *fp = stdout;
int n;
fprintf(fp, "%d\n ", 45);
fprintf(stderr, "%d ", 65);
return 0;
}Select an option to see the answer and solution.
Q274
Open questionSelect an option to see the answer and solution.
Q275
Open questionSelect an option to see the answer and solution.
Q276
Open question#include <stdio.h>
int main()
{
int i = 10, j = 3;
printf("%d %d %d", i, j);
}Select an option to see the answer and solution.
Q277
Open question#include <stdio.h>
int main()
{
char *n;
scanf("%s", n);
return 0;
}Select an option to see the answer and solution.
Q278
Open questionSelect an option to see the answer and solution.
Q279
Open questionSelect an option to see the answer and solution.
Q280
Open question#include <stdio.h>
int main()
{
short int i;
scanf("%*hd", &i);
printf("%hd", i);
return 0;
}Select an option to see the answer and solution.