Sunday, November 9, 2014

C Programming for Beginners 7 - If Statements in C

2:26 PM


















#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");
}
}





Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top