+ 2
Whay we use #define _class #ifndf _class #endif ?
what will happen if we ignore this?
1 Respuesta
+ 3
these macros(called header guards or include guards) are used to avoid conflicts in names. If you try to include the same header 2 or more times(even indirectly) you get an error.