I tried the following code:
#include<stdio.h>
main()
{
int i;
for(i=1;i<50;i++){
printf("Hello World");
}
}
and
#include<stdio.h>
main()
{
int i;
while(1){
printf("Hello World");
}
}
codepad shows "Time out". Does it have syntax-checks or does it simply check if my program takes up too much time?