The if-else Statement Program in c language in hindi
जैसा कि हम जानते है कि c language में condition के लिए if statement का use करते है अगर condition सत्य है तो compiler if statement के ब्लाक को execute करता है अगर condition असत्य है तो हमे कोई message नही दिखाई देता है इसी तरह if-else statement का उसे हम condition के लिए करते है लेकिन इसमें condition असत्य होने पर हम कोई message user को दिखा सकते है| if-else statement का use करते हुए एक program बनायेगे जिसमे user कोई एक नंबर डालेगा अगर नंबर सम संख्या है तो message आये कि यह एक even (सम) नंबर है अन्यथा odd(विषम) नंबर |
OUTPUT:
Enter a number: 44
It is a even number
INPUT:
/* Program to know number is even or odd*/
#include<stdio.h>
#include<conio.h>
void main()
{
int n;
printf("Enter a number: "); //to show message to user
scanf("%d",&n); //to take input
/*for condition*/
if(n%2==0) //n%2 means result of n when it's divided by 2
printf("\n It is a even number"); //if condition is true then print it
else
printf("\n It is a odd number")); //if condition is false then show this message
getch();
}
Explanation:
- if statement में हम condition देते है अगर condition सत्य है तो वो if के ब्लाक को execute करेंगा अगर condition असत्य है तो क्या करेगा
- condition असत्य होने पर अगर हम चाहते है कोई message दिखाई पड़े तो हम if के बाद else का ब्लाक देते है जिसमे आप कोई message या फिर कुछ और जो message असत्य होने पर दिखाई दे वो आप दे सकते है
- इसमें मैने n%2 use किया है जिसका मतलव है कि compiler n (इनपुट user के द्वारा ) की value को 2 से divide करेगा और आउटपुट में हमे उसका remainder (शेषफल ) देगा
for any queries comment below
Program to calculate simple interest using if,else statement
ReplyDeleteWhere (if principal amount is greater than 2500 then rate of interest is 10% otherwise 5%)
I'll talk aboutData Types in C Language with examples in this article. What C data types are, what they look like, and when and how to utilize them . Data types are declarations for variables. This determines the type and size of data associated with variables. In this tutorial, you will learn about basic data types such as int, float, char, etc. in C programming.
ReplyDeleteTo carry out actions based on a given circumstance, anif-else statement in C is utilized. This Scaler Topics article explains how to implement the decision-making process in C using if-else statements. C if else statement - An if statement can be followed by an optional else statement, which executes when the Boolean expression is false.
ReplyDelete