#include void f( ) { static int i = 0; i++; printf( "i = %d\n", i); } int main( int argc, char* argv[] ) { f(); f(); f(); }