Ceilidh course c unit 1 ex hi question

Question:

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.c
to compile it, and
    a.out
to run it.

The test system will look for words like "Hi", "there", "day" etc in your output when allocating marks for dynamic tests.

Typical input:

    None

Typical output:

    Hi there, have a nice day!

Marking:

    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.