/* static storage class */ #include void count_it(); int main() { int i = 0; count_it(); count_it(); count_it(); count_it(); } void count_it() { static int count = 5; count++; printf("Count is %d\n", count); }