Search Blog

Thursday, March 10, 2022

How to use and What is The use of Continue in Loop Statements(for,while,do while)?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Programme To Use Continue in Loops. 

Now I Will only Make to guys understand only the New Function. To Understand other thing 
Please Check My other BLOGS.

What Continue do in a Loop? What is The work of Continue?
Continue can Be used in Any Loop(for,while,do while).It is Used To Stop The Loop for That particular Value and Run it for Next Value.
Here, j is taken From User. In if i==j(i is said to be equal to j) means at i==j the if goes true and continue  will work.

Lets Understand With Output.

 Here, j=5 At i=5 continue will not let the loop run forward but ask him to go to starting
Means at j=5=i printf("%d\n",i); will not run due to continue.We cant se 5 in output.

Similarly at j=2

At j=10

 Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.

THANKS

No comments:

Post a Comment

How to Add Two Array(or Matrix) ?

    Here We Will Learn To Program C. I'll try To give my Best To Make you understand.                                                   ...