Files for the zeroth project for WC3.
Instructions are incomplete
Instructions:
- Fork this repository.
- Open up a terminal and clone your copy of your repository with git.
- Create a new file called
hello_world.c
. - Type the following:
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
hello_world.o
andhello_world
- Enter in
./hello_world
and "Hello, World!" should be outputed. - Update the README file with your name.
- Stage, commit, and push your changes with git.