Filling in ex3

This commit is contained in:
Dan Buch 2016-04-11 23:30:47 -04:00
parent 88f82d39aa
commit 84d3be78f1
2 changed files with 13 additions and 0 deletions

View File

@ -1 +1,2 @@
ex1
ex3

12
lcthw-remnants-2/ex3.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
int main()
{
int age = 10;
int height = 72;
printf("I am %d years old.\n", age);
printf("I am %d inches tall.\n", height);
return 0;
}