What is a pre processer? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

What is a pre processer?

2nd Aug 2020, 10:30 AM
Subhasish Panigrahi
1 ответ
+ 2
C/C++ Preprocessors As the name suggests Preprocessors are programs that process our source code before compilation. There are a number of steps involved between writing a program and executing a program in C / C++. Let us have a look at these steps before we actually start learning about Preprocessors. You can see the intermediate steps in the above diagram. The source code written by programmers is stored in the file program.c. Preprocessor programs provide preprocessors directives which tell the compiler to preprocess the source code before compiling. All of these preprocessor directives begin with a ‘#’ (hash) symbol. The ‘#’ symbol indicates that, whatever https://www.google.com/amp/s/www.geeksforgeeks.org/cc-preprocessors/amp/
3rd Aug 2020, 4:52 PM
A S Raghuvanshi
A S Raghuvanshi - avatar