The ________ directive is used to define symbolic names or constants in a C program.

  • #constant
  • #define
  • #enum
  • #import
The correct answer is (b) #define. In C, the #define preprocessor directive is used to define symbolic names or constants. These names can simplify your code and make it more readable.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *