For Loop In C In Hindi ,
What Is For Loop In C In Hindi
C या C++Language में For Loop का Use किसी Particular Statement या किसी Particular Block को एक निश्चित Condition के True होने तक बार -बार Execute करने के लिए किया जाता हैं।
दूसरे शब्दों में , For Loop एक निश्चित Condition के True होने तक एक Particular Statement को बार -बार Check करता रहता हैं। Condition के False होते ही Program का Control Loop से बाहर हो जाता हैं और Loop खत्म हो जाता हैं।
For Loop के 3 Main Steps –
Initialization –
Variable Initialization , For Loop का पहला Step हैं यानि For Loop की शुरुवात Variable Initialization से होती हैं। यहां पर Variable में Initial Value Assign की जाती हैं। ये Step पूरे Loop में सिर्फ एक ही बार Execute होता हैं।
For Example –
for (int i=0 ;
OR
(int i=10 ;
Test Condition –
Test Condition , For Loop का दूसरा Step हैं। Test Condition Step ही Decide करता हैं कि For Loop कितनी बार Execute होगा। जब तक For Loop के अंदर Define Condition True होगी तब तक For Loop के अंदर Define सारे Statements बार – बार Check होते रहेंगे।
लेकिन जैसे ही Condition False हो जायेगी For Loop अपने आप खत्म हो जायेगा और Program का Control , Loop से बाहर Exit हो जायेगा।
For Example –
for (int i=0 ; i<=10 ;
OR
(int i=10 ; i>=1 ;
Increment / Decrement या Variable Updation –
Variable Updation , For Loop का तीसरा Step हैं। इस Step में Variable की Value को Update किया जाता हैं। हर बार Loop Execute होने के बाद Variable की Value , Loop में Define Increment / Decrement Command के द्वारा Update होती हैं। Variable में Value Update होने के बाद ही Condition Check होती हैं।
For Example –
for (int i=0 ; i<=10 ; i++)
OR
(int i=10 ; i>=1 ; i–)
For Loop Syntax –
for (initial condition ; test condition ; increment / decrement)
{
statement 1 ;
statement 2 ;
———— ;
———– ;
}
For Example-
for (int i=0 ; i<=10 ; i++)
{
cout<<i ;
}
For Loop In C In Hindi ,
“Switch Case Statement In C In Hindi With Example” , Video को हमारे YouTube channel में देखने के लिए इस Link में Click करें । YouTube channel link – (Padhai Ki Batein / पढाई की बातें)
NOTE – Class 8th , 9th , 10th , 11th , 12th के हिन्दी विषय के सभी Chapters से संबंधित videos हमारे YouTube channel (Padhai Ki Batein / पढाई की बातें) पर भी उपलब्ध हैं। कृपया एक बार अवश्य हमारे YouTube channel पर visit करें । सहयोग के लिए आपका बहुत – बहुत धन्यबाद।
You are most welcome to share your comments . If you like this post . Then please share it . Thanks for Reading.
यह भी पढ़ें…
C या C++ में पहला Program कैसे बनाते हैं ?
Difference Between If And If Else Statement In C
6 Small And Simple Programs For Beginners
Find Out the Largest Value of any given four And Three Numbers in C
Find Out the Largest Value of any given five Numbers in C
Logical Operators In C Programming
How To Create Hyperlink In HTML
How To Insert An Image In HTML Page
Ordered And Unordered List In HTML
Add Background Color And Image
How To Create A Website Using HTML Only On Notepad No CSS Used
How TO Create A Beautiful And Simple WebPage Using HTML Only (No CSS Used)