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,4 @@
CFLAGS=-Wall -g
clean:
rm -f ex4

BIN
learncthehardway/4/ex4 Executable file

Binary file not shown.

14
learncthehardway/4/ex4.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdio.h>
/* Warning: This program is wrong on purpose. */
int main()
{
int age = 10;
int height;
printf("I am %d years old.\n");
printf("I am %d inches tall.\n", height);
return 0;
}