C Language MCQ - English
Which data type is most suitable for storing a number 65000 in a 32-bit system?
Home | Discussion ForumFree Online Test
Which data type is most suitable for storing a number 65000 in a 32-bit system?
signed short
unsigned short
long
int
Answer : B
Free Online Test
View More Related Question
1) What is short int in C programming?
Basic datatype of C
Qualifier
short is the qualifier and int is the basic datatype
All of the mentioned
View Answer
2) Which of the following is not a correct variable 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) 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");
}
5) Data type qualifiers can be classified into?