Even I used break() and exit() statements many times, I am bit confused between them. I need to know exact meaning of both, when we should use them. Please explain with small example. Thank you.
|
|
In the above code, break exits the current loop which is the while loop. i.e. some code (2) shall be executed after breaking the loop. For exit, it just gets out of the program totally:
You would get out of the program. i.e. some code (2) is not reached in the case of |
|||
|
|
|
|
|||
|
|
|
||||
|
|
