The keyword used to define constants in C is const . Additionally, #define is used for preprocessor constants. Other options like static and constant are incorrect. ;
The keyword used to define constants in C is const . Another method is using the #define preprocessor directive, but it is not a keyword. Thus, the correct answer to the question is a. const .
;