The #undef directive is used to ________ a macro defined by #define.
- declare
- initialize
- redefine
- remove
The #undef directive is used to remove a macro definition created by #define. It essentially "undefines" the macro, making it no longer available for use.
Loading...
Related Quiz
- What is the significance of the SEEK_SET, SEEK_CUR, and SEEK_END constants in file handling?
- In a large software project, certain code needs to be compiled only for debugging purposes. How can preprocessor directives be used to achieve this?
- What is the primary purpose of structures in C programming?
- The keyword ________ is used to define a structure in C.
- When declaring a string literal in C, which character is automatically appended at the end?