#include <stdio.h> int main() { const int MIN_AGE = 18; printf("You must be at least %d years old.\n", MIN_AGE); return 0; }
Click Run to execute this code.