Questions tagged [codepad]

Codepad is an online compiler/interpreter, and a simple collaboration tool.

Codepad is an online compiler that allows users to edit and paste in short snippets of runnable code in any of various pre-determined programming languages.

16 questions
-1
votes
1 answer

How codepad know about infinite loop?

I tried the following code: #include main() { int i; for(i=1;i<50;i++){ printf("Hello World"); } } and #include main() { int i; while(1){ printf("Hello World"); } } codepad shows "Time out". Does…
1
2