c input etiketindeki yazılar
C / C++ »

Let’s start!
To write and execute a program:
Edit : writes codes of the program on a suitable platform
It creates a file which has “cpp” extension. For example: “First.cpp”
Preprocess : adds header files and then checks for errors before compiling
Compile :
checks for syntax errors
converts program code into object code(machine language code)
At this point, “First.cpp” becomes “First.obj”
Link : makes object code and files in preprocessing work together
Load : loads program into memory (CPU will take instructions)
Execute : runs every line in memory, but …