Computer Science, asked by anshal47, 1 year ago

Code
input i = 0, j = 1, k = 2
m = i++ OR j++ OR k++
Print i
Print j
Print k
Print m​

Answers

Answered by purohitkumar
0

Answer:

i = 0, j = 1, k = 2

m = i++ OR j++ OR k++

m = 0 OR 1 OR 2

0

1

2

0 OR 1 OR 2

Similar questions