2016-04-12 08:47:46 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int age = 10;
|
2016-04-12 08:50:03 +00:00
|
|
|
int height = 72;
|
2016-04-12 08:47:46 +00:00
|
|
|
|
2016-04-12 08:50:03 +00:00
|
|
|
printf("I am %d years old.\n", age);
|
2016-04-12 08:47:46 +00:00
|
|
|
printf("I am %d inches tall.\n", height);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|