Computer Science, asked by Twinkle7544, 9 months ago

What should we write in qbasic to print our name and surname without leaving space between them

Answers

Answered by Rajvaibhav87365
10

Answer:

Use semicolon. ;

Explanation:

CLS

LET A$="TWINKLE "

LET B$="SHUKLA"

PRINT A$;B$

END

Similar questions