"Weakness of attitude becomes weakness of character."
- Albert Einstein
C Programming - Control Instructions
Why C Programming Control Instructions?
In this section you can learn and practice C Programming Questions based on "Control Instructions" and improve your skills in order to face the interview, competitive examination and various entrance test (CAT, GATE, GRE, MAT, Bank Exam, Railway Exam etc.) with full confidence.
Where can I get C Programming Control Instructions questions and answers with explanation?
IndiaBIX provides you lots of fully solved C Programming (Control Instructions) questions and answers with Explanation. Solved examples with detailed answer description, explanation are given and it would be easy to understand. View the solution for the problems with feel and good user interface, easily go through all questions and answers.
How to solve C Programming Control Instructions problems?
You can easily solve all kind of C Programming questions based on Control Instructions by practicing the objective type exercises given below, also get shortcut methods to solve C Programming Control Instructions problems.
i. break statement "STOP's" executing the loop.
ii. continue will execute the next instruction.
1st iteration : x = -1
process : if (x<5) [condition true] so "continue" executes and control goes to "else" where we break the loop and iterate again.