What will the given command do?
LET C=A+B
Answers
Answered by
3
Answer:
it will give the sum of A+B
Answered by
3
Answer:
LET : It assigns a value to a variable in a program. It stores value in the memory location.
LET A = 15 Assigning constant to a variable
LET A = B Assigning variable to a variable
LET C = A + B Assigning an expression to a variable
So, in expression C = A + B, the numerical variable C will be assigned with the value of A + B.
Similar questions