box-o-sand/lcthw/ex2/ex1.c
2024-04-15 15:16:14 -04:00

13 lines
190 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;
}