Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
11 lines (9 sloc) 106 Bytes
#include <stdio.h>
int main()
{
int i;
for(i=0; i < 10; i++)
{
printf("Hello World!\n");
}
}