c ? operator
/* The expression a ? b : c evaluates to b if the value of a is true,
* and otherwise to c
*/
// These tests are equivalent :
if (a > b) {
result = x;
}
else {
result = y;
}
// and
result = a > b ? x : y;
c ? operator
/* The expression a ? b : c evaluates to b if the value of a is true,
* and otherwise to c
*/
// These tests are equivalent :
if (a > b) {
result = x;
}
else {
result = y;
}
// and
result = a > b ? x : y;
C logical operators
1. && (AND) is true when both the conditions are true
“1 and 0” is evaluated as false
“0 and 0” is evaluated as false
“1 and 1” is evaluated as true
2. || (OR) is true when at least one of the conditions is true. (1 or 0 = 1)(1 or 1 = 1)
3. ! returns true if given false and false if given true.
!(3==3) evaluates to false
!(3>30) evaluates to true
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us