// A simple program with some common errors in it // to demonstrate compiler error messages // Angela Finlayson - angf@cse.unsw.edu.au // 27/2/2017 // Compile by typing /* dcc -o errorExercise errorExercise.c */ // or at home /* gcc -Werror Wall -O -o errorExercise errorExercise.c */ // Run by typing: /* ./errorExercise */ #include int mainn(void) { printf("Hello World!\n"); prinf("Goodbye Everybody\n") printf("asfhahfka2\n847hfaskhf;uhajkf"); }