Generating Compiler Warnings and Errors

suggest change

Compiler warnings can be generated using the #warning directive, and errors can likewise be generated using the #error directive.

#if SOME_SYMBOL
#error This is a compiler Error.
#elif SOME_OTHER_SYMBOL
#warning This is a compiler Warning.
#endif

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents