init commit

This commit is contained in:
2016-07-21 10:22:47 -07:00
commit cb4eb030bd
55 changed files with 1209 additions and 0 deletions

View File

@ -0,0 +1,6 @@
CFLAGS=-Wall -g
clean:
rm -f ex1
all:
ex1

BIN
learncthehardway/exc1/a.out Executable file

Binary file not shown.

View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
puts("Hello world.");
return 0;
}