C Language MCQ - English
Is there any difference between following declarations?
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 data types has the size that is variable?
2) The maximum value that an integer constant can have 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) By default a real number is treated as a
5) Which of the following is not a correct variable type?