Programs to find Radius of Circle in QBASIC
CLS
INPUT "Enter Circumference"; c
r = c / 2 * 22 / 7
PRINT "Radius="; r
END