Final answer:
The correct answer is #define message "Hello, World!". This defines a text macro named message that contains the string data 'Hello, World!'
Step-by-step explanation:
The correct answer is a) #define message "Hello, World!". In C programming language, the #define directive is used to create a text macro.
The macro name, in this case, is 'message', and the macro contains the string data 'Hello, World!'. By using the #define directive, whenever the macro 'message' is encountered in the code, it will be replaced with the defined string 'Hello, World!'.
Learn more about C programming language