What does the line containing "break;" do in the following code?
void afunction() { if(1) { break; afunction(); printf("Error"); } }
Reveal answer
Fill a bubble to check yourself
What does the line containing "break;" do in the following code?
void afunction() { if(1) { break; afunction(); printf("Error"); } }