0
Constant
I didn’t clearly understand constants even after taking the constants lessons in C......could someone explain me??? macros tooo plz tell me what is macros
2 ответов
+ 1
C Constants is the most fundamental and essential part of the C programming language. Constants in C are the fixed values that are used in a program, and its value remains the same during the entire execution of the program.
And about Macros, a macro is a fragment of code that is given a name. You can define a macro in C using the #define preprocessor directive.
Here are more information: https://www.programiz.com/c-programming/c-preprocessor-macros
+ 1
thank you