Torsten
6b1c316f04
fiddled with run numbers a bit recording times with noop removed results slightly worse than hoped
11 lines
208 B
C
11 lines
208 B
C
#include<stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
setbuf(stdout, NULL); /* to make it equivalent to the other versions, otherwise it caches */
|
|
int counter = 10000;
|
|
while(counter--) {
|
|
printf("Hello there\n");
|
|
}
|
|
}
|