If Statement Example Program In C Programming Language
Definition
- The if statement executes based test expression inside the braces.
- If statement expression is to true, If body statements are executed.
- If statement expression is to false, If body statements are skipped.
- IF conditional statement is a feature of this programming language which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false. Apart from the case of branch predication, this is always achieved by selectively altering the control flow based on some condition.
- Simply, Block will execute based on If condition or value.
Syntax
if (expression) // Body will execute if expression is true or non-zero
{
code here
}
Example Program for Simple If:
/* Example Program For If In C Programming Language
little drops @ thiyagaraaj.com
Coded By:THIYAGARAAJ MP */
// Header Files
#include<stdio.h>
#include<conio.h>
//Main Function
int main()
{
// Variable Declaration
int a;
//Get Input Value
printf("Enter the Number :");
scanf("%d",&a);
//If Condition Check
if(a > 10)
{
// Block For Condition Success
printf("%d Is Greater than 10",a);
}
// Wait For Output Screen
getch();
//Main Function return Statement
return 0;
}
Sample Output:
Enter the Number :15
15 Is Greater than 10
Simple Example Programs In C Language
- Hello World C Language Example Program
- If Statement Example Program In C Programming Language
- If else Statement Example Program In C Programming Language
- Simple Example Program For If..Else : Example 2
- Switch Case Statement Example Program In C Programming Language
- Simple Example Program For Printf
- Simple C Program for Switch case to Find weekdays name with weekday number
- Simple Program to Print All ASCII Value Table in C Programming
Read More Articles
- Use of getch(),getche() and getchar() in C
- Switch Case Statement Example Program In C Programming Language
- C Character Set
- Convert a Floating-point value to an Integer in C
- Data Input and Output gets and puts Example Program In C
- Special Operators In C
- Pointer Representation and Pointer Example Programs
- C Data Input and Data Output
- Simple While Loop Example Program In C Programming Language
- Data Output printf and putchar Example Program In C
- C Introduction
- C Operators
- Storage Classes In C
- C Pointers
- File Management
- C Identifiers
- Loop Control Statements
- Hello World - Simple C Program
- C Array
- Single Character Output Function : putchar()
- C Reserve Words
- C Specific Properties and Implementation
- If else Statement Example Program In C Programming Language
- If Statement Example Program In C Programming Language
- Confusing Array in C ( Array Representation and Initialization )