+ 7
How to write recursive function with #define
In lessons there was an area function was declared with #define How to make a a condition and recursive with #define
2 Antworten
+ 3
#define performs string substitution prior to the compiler getting the code. Attempting to perform recursion would fail as the substitution would be performed infinitely never reaching the compiler.
+ 5
Thanks master I got it