#include void f(void); int main(void) { f(); f(); f(); return 0; } void f (void) { int k = 0; static int j = 0; printf(" %d %d\n", ++j, ++k); }