A simple example of the if statement : If « Language Basics « C / ANSI-C

Home
C / ANSI-C
1.assert.h
2.Console
3.ctype.h
4.Data Structure Algorithm
5.Data Type
6.Development
7.File
8.Function
9.Language Basics
10.Macro Preprocessor
11.Math
12.math.h
13.Memory
14.Pointer
15.setjmp.h
16.signal.h
17.Small Application
18.stdio.h
19.stdlib.h
20.String
21.string.h
22.Structure
23.time.h
24.wctype.h
C Tutorial
C++
C++ Tutorial
Visual C++ .NET
C / ANSI-C » Language Basics » IfScreenshots 
A simple example of the if statement
A simple example of the if statement


#include <stdio.h>

void main()
{
   int number = 0;
   printf("\nEnter an integer between 1 and 10: ");
   scanf("%d",&number);

   if (number > 7)
     printf("You entered %d which is greater than 7\n", number);

   if (number < 3)
     printf("You entered %d which is less than 3\n", number);
}


           
       
Related examples in the same category
1.Using ifs to decide on a discount
2.IF statement 3
3.If else
4.More statement in if else
5.If else if and else
6.More if else
7.Block if else statementBlock if else statement
8.Use two if statements
9.Use result as the if condition
10.Use user input as the if condition
11.Use int as if condition
12.If statement for different choice
13.Use calculation in if statement
14.if command
15.Use if else
16.Use statement inside if else
17.Move more statements into if and else
18.If else statement inside a for loop
19.If statement inside for loop
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.