The #define directive uses macros for defining constant values. What does this mean...? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

The #define directive uses macros for defining constant values. What does this mean...?

13th Jun 2019, 6:43 AM
Akash C R
Akash C R - avatar
2 ответов
+ 1
hi
13th Jun 2019, 8:39 PM
Jorge A Figueroa Duarte
Jorge A Figueroa Duarte - avatar
0
It pretty much means your compiler will go through your code when compiling and replace every instance of that word with what you define it as before interpreting your code. For example: #define TEN 10 cout << TEN; Will cause the system to replace TEN with the number 10 before the code is processed. Here is a more in depth explaination: http://www.cplusplus.com/doc/tutorial/preprocessor/
13th Jun 2019, 8:03 AM
Jackson O’Donnell