Decision Control Statements in C Language

Decision Control Statements in C Language

Decision statement दी गई condition की जांच करता है और फिर अपने sub block को execute करता है। decision statement किसी दी गई कंडीशन के True या False के बाद एक्सीक्यूट किए जाने वाले स्टेटमेंट को तय करता है।

Types if decision statement:

  1. If statement
  2. If-else statement
  3. Nested if-else statement
  4. Break statement
  5. Continue statement
  6. Goto statement
  7. Switch() statement
  8. Nested switch ()case
  9. Switch() case and Nested if
Statement Syntax
If statement if(condition) Statement;
If-else statement If (condition)
{
Statement 1;
Statement 2;
}
else
{
Statement 3;
Statement 4;
}
Nested if-else statement If (condition)
{
Statement 1;
Statement 2;
}
Else if (condition)
{
Statement 3;
Statement 4;
}
Else
{
Statement 5;
Statement 6;
}
Break statement Break;
Continue statement Continue;
Goto statement goto label;
Switch() statement Switch (variable or expression)
{
Case constant A:
Statement;
Break;
Case constant B:
Statement;
Break;
Default:
Statement;
}

LOOP CONTROL STATEMENTS

C में लूप कंट्रोल स्टेटमेंट तब तक लूपिंग ऑपरेशन करने के लिए उपयोग किए जाते हैं जब तक कि दी गई condition सही न हो। एक बार condition गलत होने के बाद कण्ट्रोल लूप स्टेटमेंट से बाहर आ जाता है।

Types

  1. For loop
  2. Nested for loops
  3. While loop
  4. do while loop
  5. do-while statement with while loop
Statement Syntax
For loop For(initialize counter; test condition; re-evaluation parameter)

{

Statement;

Statement;


}

Nested for loop for(initialize counter; test condition; re-evaluation parameter)

{

Statement;

Statement;

for (initialize counter; test condition; re-evaluation parameter)

Statement;


Statement;

}

}

While loop While (test condition)

{

Body of the loop

}

Do while loop do

{

Statement;

}

While(condition);

Do-while with while loop Do while(condition)

{

Statement;

}

While (condition);


error: Content is protected !!