204k views
1 vote
Which of the following defines a text macro named message that contains this string data?

a) #define message "Hello, World!"
b) macro message = "Greetings!"
c) text_message = "Macro: message"
d) set_macro("message", "Text here")
e) define_text_macro("message", "Content")

1 Answer

2 votes

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

User Vespene Gas
by
7.6k points