#include int main() { goto Label; { int Zahl = 10; Label: printf("Zahl = %i\n", Zahl); /* irgendeine Zahl wird ausgegeben! */ } return 0; }