Rev 408 | Details | Compare with Previous | Last modification | View Log
#include <stdio.h>
int main(void)
{
int i;
for(i=1;i<=255;i++)
printf("Hello world \n");
}
return 0;