C if...else Statement

You are Here:

C if...else Statement

The if statement will be executed if a specified condition is true. Otherwise, the else statement will be executed.

Example

In the below example program, we will check whether the value in a variable x is greater or lesser than 50.

Source Code

C Compiler
#include <stdio.h> int main() { int x = 30; if(x > 50){ printf("%d is greater than 50",x); } else{ printf("%d is lesser than 50",x); } return 0; }

Output

30 is lesser than 50
congratulation

Congratulation! you have learned everything about if...else statement in C Programming.

Reminder

Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.

We are working to cover every Single Concept in C.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author