box-o-sand/lcthw-remnants-2/ex5.c

13 lines
194 B
C
Raw Normal View History

2016-04-12 13:12:41 +00:00
#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;
}