Goto Statement - C Statement

C examples for Statement:goto

Introduction

goto statement performs an unconditional jump to a specified label within the same function.

goto myLabel; /* jump to label */
/* ... */
myLabel:      /* label declaration */

Related Tutorials