Loops in QBasic || QBasic Programming|| CodeMania

Опубликовано: 14 Ноябрь 2024
на канале: Code Mania
27,941
757

#Loops_in_Qbasic #Qbasic #Code_Mania
FOR LOOP QBASIC Tutorial in hindi, by Code Mania.
FOR .... Next is mostly used looping statement in Programming langauges, It is very easy to use, it execute the block of statements or set of instructions again and again until the given condition is true.
Syntax of For... Next Loop
For (variable) = (start value) TO (end value) STEP n
Statements.
...........
NEXT (variable)

Example
CLS
FOR i = 1 TO 10 STEP 2
PRINT i
NEXT i

it print the odd number from 1 to 10
Like| comment| Share| Subscribe

In this video we’ll walk you through:
Definition of For Loop
Illustration
Output in QBasic

ABOUT MY CHANNEL
My channel is about Coding and Computer related tutorial videos. I cover lots of cool stuff such as Java Programming, Python Programming and Topic for Kids
Check out our channel here:
https://www.youtube.com/channel/UCcUm...
Don’t forget to subscribe!
CHECK OUT OUR OTHER VIDEOS
   • Algorithm|| Flowchart Class 8|| Code ...  
   • Loops in QBasic || QBasic Programming...  
https://www.youtube.com/watch?v=lhWWD...
https://www.youtube.com/watch?v=A761n...
   / watch  
   • SELECT CASE IN QBASIC || WITH SAMPLE ...  
#CodeMania