+ 1
Is 'if' statement not a pre-processor type?
Is if statement no using pre-processor? Because, if statement is included in pre-processor type.
1 Respuesta
+ 2
if is not a pre-processor statement, but #if is.
example
#if defined(CR)
creditacc();
#elif defined(DR)
debitacc();
#else
error();
#endif