User
int ex() { exit(0); } int main() { int i = 1000; while(1) { printf("%d\n", i); i || ex(); i --; } return 0; }
Зачтется?