Skip to content

Commit

Permalink
ex4 etc... not sure
Browse files Browse the repository at this point in the history
  • Loading branch information
jessewmc committed Jul 22, 2014
1 parent b64673f commit b2c1459
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CFLAGS=-Wall -g

all: ex1 ex3
all: ex1 ex3 ex4


clean:
Expand Down
Binary file modified ex3
Binary file not shown.
Binary file added ex4
Binary file not shown.
12 changes: 12 additions & 0 deletions ex4.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#include <stdio.h>

int main()
{
int age = 10;
int height= 12;

printf("yo is %d yrs old\n", age);
printf("yo is %d inches tall\n", height);

return 0;
}

0 comments on commit b2c1459

Please sign in to comment.