C Language MCQ - English
Sort int in C language is?
Home | Discussion ForumFree Online Test
Sort int in C language is?
Basic Datatype of C
Qualifier
All of the mentioned
short is the qualifier and int is the basic datatype
Answer : D
Free Online Test
View More Related Question
1) Size of an int data type is ________ ?
2) Which of the datatypes have size that is variable?
3) What will be the output of the following C code? #include <stdio.h>
int main()
{
float f1 = 0.1;
if (f1 == 0.1)
printf("equal\n");
else
printf("not equal\n");
}
4) Data type qualifiers can be classified into?
5) What will be the output of the following C code? #include <stdio.h>
int main()
{
float x = 'a';
printf("%f", x);
return 0;
}