2015-11-20 18:12:13 +01:00
|
|
|
#include<stdio.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2015-11-21 15:33:07 +01:00
|
|
|
setbuf(stdout, NULL); /* to make it equivalent to the soml, otherwise it caches */
|
|
|
|
int counter = 100352 - 352;
|
2015-11-20 18:12:13 +01:00
|
|
|
while(counter--) {
|
|
|
|
printf("Hello there\n");
|
|
|
|
}
|
|
|
|
}
|