SPO600 Compiled C Lab
Revision as of 17:46, 16 January 2014 by Chris Tyler (talk | contribs)
{{Admon/tip|Ireland|If you do not have a Linux machine with you, you can use ireland.proximity.on.ca -- an account has
Lab 2
1. Write a basic C program which prints a message on the screen, Hello World!-style -- something like this:
#include <stdio.h> int main() { printf("Hello World!\n"); }
2. Compile the program using the GCC compiler. Include these compiler options:
-g # enable debugging information -O0 # do not optimize (that's a capital letter and then the digit zero) -fno-builtins # do not use builtin function optimizations