QBASIC PROGRAMMING 

*WAP TO PRINT FIRST ODD NUMBER .(SUB)

DECLARE SUB  SERIES ( )
CLS 
CALL SERIES 
END 

 SUB SERIES (   )
A= 1 
FOR I = 1 TO 10 
PRINT A = A+2 
NEXT I 
END SUB 

Comments

Popular posts from this blog