+ 1
What is the difference between ifndef and define
4 ответов
+ 4
"ifndef" is used to, let us say check whether a particular constant is already defined or not.
It means "if not defined".
"define" actually let's you create it.
+ 3
This is from the C course.
https://www.sololearn.com/learn/C/2958/
+ 2
Thanks 👍
+ 1
Thanks for your answer!
Can U provide a code for it?