+ 2
What is the difference between runtime and compile time?
6 Respuestas
+ 4
runtime means during program execution, compile time is during program compilation
+ 2
compile time means that the codes you wrote is being translated to a machine code, while run time means that the executable machine code is being executed.
+ 1
https://www.sololearn.com/Discuss/1462011/?ref=app
another example from a similar question
+ 1
Runtime and compile time are programming terms that refer to different stages of software program development. Compile-time is the instance where the code you entered is converted to executable while Run-time is the instance where the executable is running. The terms "runtime" and "compile time" are often used by programmers to refer to different types of errors too.
Compile-time checking occurs during the compile time. Compile time errors are error occurred due to typing mistake, if we do not follow the proper syntax and semantics of any programming language then compile time errors are thrown by the compiler. They wont let your program to execute a single line until you remove all the syntax errors or until you debug the compile time errors. The following are usual compile time errors:
Syntax errors
Typechecking errors
Compiler crashes (Rarely)
http://net-informations.com/JUMP_LINK__&&__python__&&__JUMP_LINK/iq/checking.htm
0
Compile time means error in syntax and semantics while run time means that error occur when program in executable state like a divide by b and when we assign value of b=0 then it is run time error
0
Compile time during it your code is compiled into byte code
Run time during it your code has been executed