int A=5, B;
B=a++
System.out(“A=”+A+”B=”+B);
FIND THE ERROR
Answers
Answered by
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
2
Answer:
Hope That Helps You (⌐■-■)(⌐■-■)(⌐■-■)(⌐■-■)
Similar questions