// some compiler options // -o outfile // specify output file name (executable by default) // -S // assembly language // -g // debugging symbols // -v // verbose mode // -Olevel // specify optimization level (0-3) e.g. -O3 // --version // lists compiler version // --help // gives you list of options #include // argc, argv used to read in command line options int main(int argc, char * argv[]) { printf("Hello E85!\n"); // check out argc, argv printf("argc = %d\n", argc); for (int i = 0; i < argc; ++i) printf("%s\n", argv[i]); return 0; }