C Programming for Beginners 7 - If Statements in C
#include <stdio.h>#include <stdlib.h>intmain()
{
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");
}
}