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

25 lines
397 B
C++

// the use of static Static
// variables in a Function
#include <iostream>
#include <string>
using namespace std;
void demo()
{
// static variable
static int count = 0;
cout << count << " ";
// value is updated and
// will be carried to next
// function calls
count++;
}
int main()
{
for (int i=0; i<5; i++)
demo();
return 0;
}