Pls tell how to fix this code of Flowing Words (pro) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

Pls tell how to fix this code of Flowing Words (pro)

https://code.sololearn.com/c60BkYbMpV5O/?ref=app Pls send the correct code or give some recommendations and modifications related to this code... Thank you

11th May 2020, 5:56 AM
Namit Jain
Namit Jain - avatar
1 Answer
+ 1
Hey namit follow these steps.hope this may help you 1) C program (source code) is sent to preprocessor first. The preprocessor is responsible to convert preprocessor directives into their respective values. The preprocessor generates an expanded source code. 2) Expanded source code is sent to compiler which compiles the code and converts it into assembly code. 3) The assembly code is sent to assembler which assembles the code and converts it into object code. Now a simple.obj file is generated. 4) The object code is sent to linker which links it to the library such as header files. Then it is converted into executable code. A simple.exe file is generated. 5) The executable code is sent to loader which loads it into memory and then it is executed. After execution, output is sent to console.
12th May 2020, 5:37 AM
Divya Peddapalyam
Divya Peddapalyam - avatar