+ 2
What is time limit exceding means?
when I try infinite do while loop statement the output comes with time limit exceed
4 ответов
+ 8
@nikh Program execution time is a thing, but there is no limit to how long your program must run. Code Playground has this limit because it is an online compiler/interpreter, and they have to make sure the server doesn't get fully occupied by compile requests.
+ 9
This means that Code Playground has time-out, because your program process has taken too long to reach exit. This isn't a problem on desktop compilers.
+ 1
tnks hatsey for answer is there really time boundation for programing and that time boundation did varies with program that is execution?