Computer Science, asked by rajsinghjaat753, 4 months ago

What will be the result of following two expressions if i=20 initially?

(i) ++i <= 20  (ii) i++ <= 20
please only tell answers if you know if you have dont​

Answers

Answered by abhay03ac
3

Answer:

The answer will be the same

Explanation:

it doesn't matter if you put ++ at the prefix or postfix

if you do it after that for example

i<=20

i++;

it still won't work but this is how it is so neither will have any change in the program.

Similar questions