#include /* This is a comment. */ int main(int argc, char *argv[]) { int distance = 100; char word[] = "HELL"; // this is also a comment printf("You are %d miles away.\n", distance); printf("What the %s is happening!", word); return 0; }