This commit is contained in:
Dan Buch 2016-04-12 09:12:41 -04:00
parent 6f61f85e0f
commit ef271c59c5
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,4 @@
ex1
ex3
ex4
ex5

12
lcthw-remnants-2/ex5.c Normal file
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;
}