Conditional Operator
Conditional Operator को Ternary operator भी कहते है। इसमें दो symbols ? और : होते है .
Conditional Operator को Use करने का सामान्य तरीका
Syntax
Syntax
expression1 ? expression2 : expression3
If the expression1 evaluates to a non zero value (i.e. true) then expression2 is solved otherwise expression3 is evaluated. Consider an example –
x % y = = 0 ? x++ : y++ ;
Here, if x is divisible by y then x will be incremented otherwise y will be incremented. The true use of this operator is discussed in next chapter – Selection
Example
Output :
दोबारा रन कराने पर
Enter a number 20
Wrong
Example
*/ Program to check whether the number is equal to 10 or not */
#include<stdio.h>
#include<conio.h>
int main(void)
{
int number;
clrscr();
printf("Enter a number");
scanf("%d",&number);
number ==10? printf("Right"): printf("Wrong");
getch();
return 0;
}
#include<stdio.h>
#include<conio.h>
int main(void)
{
int number;
clrscr();
printf("Enter a number");
scanf("%d",&number);
number ==10? printf("Right"): printf("Wrong");
getch();
return 0;
}
Enter a number 10
Rightदोबारा रन कराने पर
Enter a number 20
Wrong
सीखने के लिए c प्रोग्रामिंग सैंपल प्रोग्राम
ReplyDeleteC भाषा के बारे में टर्निरी ऑपरेटर नमूना कोड में फ़ंक्शन जोड़ें