C Language MCQ - English
Which of the following is not a correct variable type?
Home | Discussion ForumWhich of the following is not a correct variable type?
float
real
int
double
Answer : B
Free Online Test
View More Related Question
1) Which data type is most suitable for storing a number 65000 in a 32-bit system?
2) What will be the output of the following C code? #include <stdio.h>
int main()
{
float f1 = 0.1;
if (f1 == 0.1f)
printf("equal\n");
else
printf("not equal\n");
}
3) Character literals in C syntax are?
4) Which of the following is not a derived data type in c?
5) Which of the datatypes have size that is variable?