// =================================================================== // Program: hello_world.c // Date: July 2020 // Author: Jean-Michel Richer // Email: jean-michel.richer@univ-angers.fr // =================================================================== // Description: // This program is the classical 'Hello World" program. // // It is intended to be translated in 32 bits x86 assembly // language. // =================================================================== #include #include /** * main function */ int main(int argc, char *argv[]) { printf("Hello World!"); return EXIT_SUCCESS; }