If you read the book :Ansi C by brian W.kernighan and Dennis m.ritchie you will see that everything can be written without goto

Even in cases that you believe that you can't do anything else like while (...) { while (..) { } } .(Break command will only "break" the inside while.), you can write the code without the goto with some more variables or some if elseif .

Anyway codes with goto are very hard to read and you can easily do mistakes so it is better not to use goto :tongue: