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) By default a real number is treated as a
2) The format identifier ‘%i’ is also used for _____ data type?
3) Is there any difference between following declarations?
Both are identical
No difference, except extern int fun(); is probably in another file
int fun(); is overrided with extern int fun();
None of these
View Answer
4) Which is correct with respect to size of the datatypes?
5) What will be the output of the following C code on a 32-bit machine? #include <stdio.h>
int main()
{
int x = 10000;
double y = 56;
int *p = &x;
double *q = &y;
printf("p and q are %d and %d", sizeof(p), sizeof(q));
return 0;
}