Computer Science, asked by kachhapsahil88, 3 months ago

What is the difference between the following statements?
a=10 and a 10​

Answers

Answered by aditya03raj03
2

Answer:

a=10 means a ka value 10 hai par

a 10 matlab a*10 hai a me 10 multiply hua hai

Answered by Anonymous
1

Answer:

a=10' is used to assign the value of 10 in 'a' variable whereas 'a==10' compare the value of 'a' variable with 10. Explanation: In "a=10", a is a variable that is initialized by 10 value because in any programming language "=" stands for assignment operator which is used to assign the value for any variable.

Similar questions