How to Fix Include Path Error in CC Files using Visual Studio Code
YOUR LINK HERE:
http://youtube.com/watch?v=i-KJNNek3jI
Compile-time vs. Runtime vs. Logical errors in C programming. • In this video, I will explain the difference between compile-time error, runtime error, and logical error in C programming. By the end of this video, you should be able to differentiate between these 3 types of errors in C. • There are different types of errors in C - Compile time error, run-time error, and logical errors. • Compile-time errors as the name say - occur during the compilation process. One best example of a compile-time error is a syntax error. Let’s say, you use printffs (typo) for printing text on the screen. If you try to compile your code, the C compiler will throw an error saying the program could not be compiled as it could not recognize printffs keyword. This is called compile-time error. • Run time error occurs during the execution of the program. It can cause the program to crash if not handled during the coding process. The classic example is division by zero. If your code has division operation and if division by zero is not handled inside the code, the program will compile without any issue. However, if during program execution, the denominator turns out to be zero, the program will crash as division by zero is not a legal operation. • Then we have a logical error. Logical error deals with the logic of the program code. Let’s say, I am writing a code that calculates an average of 3 numbers. The formula to calculate the average is (a+b+c)/3. However, while writing the code, I wrote (a+b)/3 instead of (a+b+c)/3. On compilation, the program will compile successfully and on execution, it will execute perfectly fine without throwing any run-time error. However, the calculation of the average of 3 numbers will be calculated incorrectly. Here, the logic written for calculation is incorrect. This is called logical error. This type of error will not make your program terminate unexpectedly. It will just add a bug in your program code which will result in unexpected output. • Some helpful resources ## • C programming course for beginners - https://www.aptuts.com/c-programming • Learn C programming online for FREE - https://www.learnconline.com/ • Follow me on my Facebook page - http://fb.com/aptuts • Free C programming cheatsheet - https://www.aptuts.com/free-c-cheatsheet • #aptuts #CProgramming #ErrorsInC
#############################
