Much cleanup to better match lesson text

This commit is contained in:
2024-04-15 15:28:45 -04:00
parent a135c338ea
commit c8ac7ac727
7 changed files with 4 additions and 16 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
int age = 10;
int height = 72;
printf("I am %d years old.\n", age);
printf("I am %d inches tall.\n", height);
return 0;
}