Computer Science, asked by wwwrobitaphilem, 3 months ago

Which Statement is used to assign a value to a variable​

Answers

Answered by santoshinibharat
1

Answer:

example:

In python - A = 10 # 10 is assigned to variable A.

In c++ - int A = 10 /* 10 is assigned to variable A.

In Golang - var A int = 10 // 10 is assigned to variable A.

Hope this is helpful to you please

Similar questions