#include<iostream.h> void f() { static int i=15; i++; cout<<"i="<<i<<endl; } void main(){ for(int k=0;k<2;k++) f(); }