C Language MCQ - English
Which of the following is not a correct variable type?
Home | Discussion ForumFree Online Test
Which of the following is not a correct variable type?
float
real
int
double
Answer : B
Free Online Test
View More Related Question
1) Which is correct with respect to size of the datatypes?
2) What is the output of this C code?#include
int main()
{
signed char chr;
chr = 128;
printf(
3) Range of unsigned int is?
4) Which of the following is not a derived data type in c?
5) 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");
}