age = 22;
if (age < 30) {
printf("You probably don't remember the Beatles, do you?");
}
If there is only one statement to be carried out, the
matching curly braces may be omitted:
age = 22;
if (age < 30)
printf("You probably don't remember the Beatles, do you?");