Computer Science, asked by riskylathwal4184, 7 months ago

if a value of b is 5. Then result o
f the expression (++b + 10) is,

Answers

Answered by deepakjoshi14
0

Answer:

Depends on the programming language: the question is not specifying one. Different languages - different rules.

In languages where “+++” is not an operator and both “++” and “+” are, three plusses in a row typically parse as “++ +”, giving “++c++ + c”. In C and C++ and Java, that is ill-formed (cannot be compiled)

If you were to add a space to make that into “++c + ++c”, the resulting expression is undefined in C and C++: the program that attempts to evaluate this is meaningless and any value you may see in a given test (I notice some other answers bring up 24 and 23) is also just noise from a broken program.

Answered by arqam513
0

Answer is Logical operator...

Explanation:

I thing it will helpful you..

Similar questions