The program is of Visual Basic....
Attachments:
sreenandauk60:
how
Answers
Answered by
2
Answer:
Private Sub command1_click()
Dim a, b, x As Integer
a = Val(Text1.Text)
b = Val(Text2.Text)
x = a + b
Label3 = "Sum of Two Number = " & x
End Sub
Similar questions