Skip to content

Instantly share code, notes, and snippets.

@plonk
Created May 23, 2013 22:18
Show Gist options
  • Select an option

  • Save plonk/5639913 to your computer and use it in GitHub Desktop.

Select an option

Save plonk/5639913 to your computer and use it in GitHub Desktop.
10 が繰り返す。何度でも初期化されるっぽい
#include <iostream>
using namespace std;
int main()
{
label:
int i(10);
cout << i << endl;
i = 20;
goto label;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment