Computer Science, asked by Ayushibanik, 4 months ago

State the output of the following:
int a = 2;
a+= a --*--a;
System.out.println(a);

Answers

Answered by atrs7391
0

Given Snippet:

int a = 2;

a+= a --*--a;

System.out.println(a);

Output the Snippet:

2

Answered by subhashpatidar9777
0

Explanation:

answers is 2

int a=2

a+= a--*--a;

Similar questions