Skip to content

Instantly share code, notes, and snippets.

@ErnyTech
Created May 9, 2018 20:44
Show Gist options
  • Save ErnyTech/b4e3af23b7b901c3f2950d1021544519 to your computer and use it in GitHub Desktop.
Save ErnyTech/b4e3af23b7b901c3f2950d1021544519 to your computer and use it in GitHub Desktop.
#include <iostream>
int main() {
using std::cout;
int i;
for(i=0; i<20; i++) {
if(i>10) {
break;
}
}
cout<< i << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment