#include <stdio.h> #include <stdlib.h> int main() { int age; printf("Please enter the age "); scanf("%d",&age); if (age > 18/* condition goes here */) { /* if the condition is non-zero (true), this code will execute */ printf("The age is greater then 18"); } if (age == 18/* condition goes here */) { /* if the condition is non-zero (true), this code will execute */ printf("The age is equal to 18"); } if (age < 18/* condition goes here */) { /* if the condition is non-zero (true), this code will execute */ printf("The age is less then 18"); } }