box-o-sand/oldstuff/lcthw-remnants/ex3.c

13 lines
177 B
C
Raw Normal View History

2011-09-05 02:18:49 +00:00
#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;
}