C Language MCQ - English
Which of the datatypes have size that is variable?
Home | Discussion ForumFree Online Test
Which of the datatypes have size that is variable?
int
struct
float
double
Answer : B
Free Online Test
View More Related Question
1) 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");
}
2) Which of the following is not a valid declaration in C?
3) Data type qualifiers can be classified into?
4) For 16-bit compiler allowable range for integer constants is ________?
5) What is Enum datatype syntax?
Enum[data type]{const1, const2, const3....}
Enum{const1, const2,....}
Enum[int datatype]
None
View Answer