# Circumference of circle. (sub)

DECLARE SUB CIR (r)
CLS
INPUT " Enter Radius ";r
CALL SUB
END

SUB CIR(r)
C=2*22/7*r
PRINT" Circumference of circle=";c
END SUB

Comments

Popular posts from this blog