|
|
|
|
zoran404 |
|
|
zoran404 |
exit(0);
if you want to quit the program. But notice that the function exit will not return to function main, but will directly quit your program. In case you want to return to main and continue executing your program from there you'll have to use return;
zoran404 |