1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | // !> The basic framework to a C program. This program prints out a message. // To compile, use either // gcc hello.c -o hello // or, if the LLVM compiler has been installed // clang hello.c -o hello #include <stdio.h> // main() is a special function, that is // the entry point into our program. int main(){ // Prints out to standard output // a message! puts("Hello Computer Systems \n"); // Return from our function. return 0; } |