Computer Science, asked by swetabasumata2015, 28 days ago

int a=4,
int b=5;
c=a+b;
system.out.println("sum="c);
find and correct the error of snippet and write the output after correcting it

very urgent​

Answers

Answered by singhgarima5092007
0

Answer:

c = 9

Explanation:

a = 4

b = 5

a + b = 5 + 4 = 9

c = a + b

c = 5+ 4

= 9

Similar questions