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
0
Answer:
c = 9
Explanation:
a = 4
b = 5
a + b = 5 + 4 = 9
c = a + b
c = 5+ 4
= 9
Similar questions