C Language MCQ - English
Is there any difference between following declarations?
Free Online Test
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
Answer : B
Free Online Test
View More Related Question
1) Which of the datatypes have size that is variable?
2) Integral data type is _________?
3) The format identifier ‘%i’ is also used for _____ data type?
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) Character literals in C syntax are?