1 2 3 4 5 6 7 8 9 10 11 12 13 14 | // 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 nice greeting message!
// puts("Hello Computer Systems \n");
printf("Hello Computer Systems \n");
// Return from our function.
return 0;
}
|