C | Variable Declaration and Scope | Question 1

Last Updated :
Discuss
Comments
Consider the following two C lines C
int var1;
extern int var2;
Which of the following statements is correct
Both statements only declare variables, don\'t define them.
First statement declares and defines var1, but second statement only declares var2
Both statements declare define variables var1 and var2
Tags:
Share your thoughts in the comments