#include void test() { char buff[5]; gets(buff); } int main() { int c = 3; test(); while(c > 0) { printf("Later\n"); c--; } return 0; }