CPlusPlusThings/english/basic_content/static/static_variable.cpp
2020-07-19 10:38:38 +08:00

25 lines
290 B
C++

// variables inside a class
#include<iostream>
using namespace std;
class GfG
{
public:
static int i;
GfG()
{
// Do nothing
};
};
int GfG::i = 1;
int main()
{
GfG obj;
// prints value of i
cout << obj.i;
}