State the output of the following:
int a = 2;
a+= a --*--a;
System.out.println(a);
Answers
Answered by
0
Given Snippet:
int a = 2;
a+= a --*--a;
System.out.println(a);
Output the Snippet:
2
Answered by
0
Explanation:
answers is 2
int a=2
a+= a--*--a;
Similar questions