// A simple program demonstrating the use of printf // Andrew Taylor - andrewt@unsw.edu.au // 2/3/2017 // Compile by typing /* dcc -o helloWorld helloWorld.c */ // or at home /* gcc -Wall -Werror -O -o helloWorld helloWorld.c */ // Run by typing: /* ./helloWorld */ #include int main(void) { printf("Hello World!\n"); return 0; }