Open In App

Redeclaration of global variable in C

Last Updated : 28 May, 2017
Comments
Improve
Suggest changes
Like Article
Like
Report
Consider the below two programs: C
// Program 1
int main()
{
   int x;
   int x = 5;
   printf("%d", x);
   return 0; 
}
Output in C:
redeclaration of ‘x’ with no linkage
C
// Program 2
int x;
int x = 5;

int main()
{
   printf("%d", x);
   return 0; 
}
Output in C:
5
In C, the first program fails in compilation, but second program works fine. In C++, both programs fail in compilation. C allows a global variable to be declared again when first declaration doesn't initialize the variable. The below program fails in both C also as the global variable is initialized in first declaration itself. C
int x = 5;
int x = 10;

int main()
{
   printf("%d", x);
   return 0;
}
Output:
 error: redefinition of ‘x’
This article is contributed Abhay Rathi.

Similar Reads