> Online tutorial : #error in c
Showing posts with label #error in c. Show all posts
Showing posts with label #error in c. Show all posts

#error in c

#error (directive)
Issues error message
Syntax:
#error

If this line of code is compiled by the compiler, a fatal error message will be issued for this line and include the text defined by .
Example:

#if !defined(MODEL)
#error Building model not defined
#endif