Computer Science, asked by sakshamsv890, 1 month ago

state the output:- int c='B'; int i=4; System.out.println((int)c+i);​

Answers

Answered by pranker44
1

Answer:

70

Explanation:

ASCII value of capital b is 66

Answered by toufick85
0

Answer:

B4 is the answer. c='B'; int i=4;

Explanation:

c+i=B4

Similar questions