box-o-sand/lcthw-remnants-2/ex5.c
Dan Buch ef271c59c5 ex5
2016-04-12 09:12:41 -04:00

13 lines
194 B
C

#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;
}