All of the following are valid expressions in C++
a = 2 + (b = 5);
a = b = c = 5;
a = 11 % 3 C++
a. TRUE सत्य
b. O FALSE असत्य
C. TRUE IN 70% CASES 70% मामलों में सही O d. NOT SURE पता नहीं
Answers
Answered by
3
True in 70% CASES AND 30% FALSE
Answered by
2
TRUE
Explanation:
1. C++ expressions are made up of operators, constants, and variables that are organised according to the language's rules.
2. It may also include function calls that yield results.
3. To compute a value, an expression can include one or more operands and zero or more operators.
4. Every expression generates a value, which is then assigned to a variable using the assignment operator.
Similar questions