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>
/* This is a comment. */
int main(int argc, char *argv[])
{
int distance = 100;
// this is also a comment
printf("You are %d miles away.\n", distance);
return 0;
}