CPlusPlusThings/basic_content/static/static_demo.cpp
Light-City 8edbbbc5a2 update
2019-11-05 16:56:07 +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;
}