Skip to content

Instantly share code, notes, and snippets.

@International
Created November 25, 2012 12:44
Show Gist options
  • Save International/4143352 to your computer and use it in GitHub Desktop.
Save International/4143352 to your computer and use it in GitHub Desktop.
sample iteration C++
#include <iostream>
using namespace std;
int main(int argc,char* argv[]) {
for(int i = 0;i < 5;i++) {
cout << "Hello world!" << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment