How to declare a global variable in C++


To declare global variables in C++, we can declare variables after starting the program. Not inside any function or block. If we want to declare some variables that will be stored in some different file, then we can create one file, and store some variable. For some external file sometimes we need to put the extern keyword with it. Also we have to include the external file with the actual program file.

Example

extern int x = 10;
extern int y = 20;

Example

#include<iostream>
#include"global.cpp"
using namespace std;
int main() {
   cout << x << endl;
   cout << y << endl;
}

Output

10
20

Updated on: 30-Jul-2019

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements