Introduction to QBASIC
QBASIC
QBASIC (Quick Beginners All Purpose Symbolic Instruction Code) is a high level programming language developed by Microsoft Corporation USA in 1985.
Raw file extension: .bas
Final (compiled) file type: .exe
Example 1
CLS
PRINT “Hello World”
END
Example 2
CLS
a=5
b=10
c=a+b
PRINT c
PRINT a+b
END
Leave a Reply