Computer Science, asked by pulkitdhingra, 10 months ago

4. class Output4
static void main()
int a=12,b=13,c; 27
c=a++ + ++a/7 +b++;
System.out.println(a+"\t"+b+""+c);
C=++a + a++/3 + ++b; 14
System.out.println(a+"|t"+b+"\t"+c);​

Answers

Answered by charlie1505
3

Answer:

Output will be

a=14 b=14 c=27

a=16 b=15 c=35

Similar questions
Math, 5 months ago