[ create a new paste ] login | about

Link: http://codepad.org/iKriru3l    [ raw code | output | fork ]

C, pasted on Apr 12:
1
2
3
4
5
6
7
8
#include <stdio.h>

int main() {
    foo:
        puts("foo");
        1 && goto foo;
    return 0;
}


Output:
1
2
In function 'main':
Line 6: error: expected expression before 'goto'


Create a new paste based on this one


Comments: