Computer Science, asked by shilpasirus, 5 months ago

predict the output a=b=c=40 print (a,b,c,sep=" ")​

Answers

Answered by Oreki
1

Output:

40 40 40

Explanation:

As all variables are equal to 40.

Answered by anindyaadhikari13
2

Question:-

  • Predict the output of the following code.

Solution:-

Given code,

a=b=c=40

print(a, b, c, sep=" ")

As all the variables are equal to 40, So, output will be,

40 40 40

Output:-

40 40 40

Similar questions