Write a program to print out a welcome message, to test your knowledge of the Ceilidh system, the editor and "cc" command. The program might be
main() { printf( "Hi there, have a nice day!\en" ); }You should first develop this entirely within Ceilidh, and then try compiling and running it outside Ceilidh using commands
cc prog1hi.cto compile it, and
a.outto run it.
The test system will look for words like "Hi", "there", "day" etc in your output when allocating marks for dynamic tests.
None
Hi there, have a nice day!
100 Dynamic correctness[All marks go to the correct operation of your program. You will not get full marks unless you print the message exactly as specified.]
As this is the first exercise of the course, you may find it useful to read the Student Guide to Ceilidh. It tells you more about how Ceilidh system operates.