home *** CD-ROM | disk | FTP | other *** search
- main() /* demonstrates use of static */
- {
- int i;
-
- for( i= 0; i < 10; ++i)
- static_demo();
- }
-
- static_demo()
- {
- int variable = 0;
- static int static_variable = 0;
-
- printf("automatic = %d, static = %d\n", variable,
- static_variable);
- ++variable;
- ++static_variable;
- }
-