Find the errors in the following QBASIC program:
CLS
LET A$ = "India"
LET B$ = A$ + 1
PRINT B$$
Answers
Answered by
1
The error is in line 4. There should be
PRINT B$
END
Similar questions