C Language MCQ - English
For 16-bit compiler allowable range for integer constants is ________?
Home | Discussion ForumFree Online Test
For 16-bit compiler allowable range for integer constants is ________?
-3.4e38 to 3.4e38
-32767 to 32768
-32668 to 32667
-32768 to 32767
Answer : D
Free Online Test
View More Related Question
1) 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
View Answer
2) 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");
}
3) What is Enum datatype syntax?
Enum[data type]{const1, const2, const3....}
Enum{const1, const2,....}
Enum[int datatype]
None
View Answer
4) 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
5) The C language defines ________ fundamental data types