Program to Print Counting using Loop in QBASIC
CLS
PRINT "Counting from 1 to 10"
FOR c = 1 TO 10
    PRINT "c="; c
NEXT c
END