Computer Science, asked by sagnickghosh28, 4 months ago

int A=5, B;

B=a++

System.out(“A=”+A+”B=”+B);
FIND THE ERROR​

Answers

Answered by IISLEEPINGBEAUTYII
2

Answer:

Whatever b = a + a++ was intended to mean (and we can’t really be sure of that), there is a simpler, clearer, and unambiguous way to express that intent. For example, you might write b = 2 * a++ or b = a + a; a ++;

Answered by SandySanjeet
2

Answer:

Hope That Helps You (⌐■-■)(⌐■-■)(⌐■-■)(⌐■-■)

Similar questions