Computer Science, asked by mayuri8782, 8 months ago

Which of the following code cannot be used to initialize multiple variables with a common value?

Answers

Answered by mauryapriya221
0

Answer:

a, b, c = 55. a, b, c = 55, 55, 55. a = b = c = 55.

Similar questions