Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <limits.h>
- int main()
- {
- int i,j,k;
- if( i == 0 && j == 0 && k == 0){
- goto zero;
- }
- zero: printf( "Goto zero. i,j,k = %d\n", i,j,k );
- return 0;
- }
- /* resultat
- 10:06:25: Starting /home/mariomoser/C_learning_journey/build-exemple_1-Desktop-Debug/exemple_1...
- Goto zero. i,j,k = 0
- 10:06:25: /home/mariomoser/C_learning_journey/build-exemple_1-Desktop-Debug/exemple_1 exited with code 0
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement