| Control Statement |
| |
| CONTINUE & STOP statements |
| |
| CONTINUE Statement |
| The general form of a CONTINUE statement is: |
| CONTINUE |
| Execution of a CONTINUE statement has no effect. |
| |
| STOP Statement |
| Stop Statement is used as a command to stop the execution of a program. You can say that this statement is the logical end of a program. |
| The general form of a STOP statement is: |
| STOP [n] |
| where n is a string which should not be more than five digits or it may be character constant. |
| Program: |
 |
| Output: |
 |
| Output: |
 |
| |
| |
|
| |
| |