Question
Suppose that a program needs to display messages in either English, French, or Spanish. Using conditional compilation, write a program called language_greeting.c that displays one
Suppose that a program needs to display messages in either English, French, or Spanish. Using conditional compilation, write a program called language_greeting.c that displays one of the following three messages, depending on whether or not the specified macro is defined: Insert Disk 1 -- if ENGLISH is defined Inserez Le Disque 1 -- if FRENCH is defined Inserte El Disco 1 -- if SPANISH is defined To test your program, remember that you can define the enabled macro during compilation using gcc -DENGLISH for example. Files that need to be on GitHub: language_greeting.c Demo: compile your program with each option and run the program to show your TA that it outputs the right Part 1 message
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started