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) For 16-bit compiler allowable range for integer constants is ________?
2) Range of unsigned int is?
3) Which of the following is a User-defined data type?
typedef int Boolean;
typedef enum {Mon, Tue, Wed, Thu, Fri} Workdays;
struct {char name[10], int age};
all of the mentioned
View Answer
4) Integral data type is _________?
5) Predict the output of following C program #include <stdio.h>
int main()
{
char a = '12';
printf("%d", a);
return 0;
}