#include #include #include int main(void) { long time_o; char a[10]="narupanda"; char b[10]; int i,j=0; time_o=time(NULL); while(1) { strcpy(b,a); j++; if(time(NULL)>time_o+1)break; } printf("number => %d \n",j); getchar(); return 0; }