Showing posts with the label goto statement in CShow All
goto statement in C ? with example

goto statement in C The goto statement is known as jump statement in C. As the name suggests, goto is used to transfer the program control to a predefined label. The goto statment can be used to repeat some part of the code for…

Load More That is All