Skip to content

Instantly share code, notes, and snippets.

@alexandream
Created April 22, 2012 20:40
Show Gist options
  • Save alexandream/2466746 to your computer and use it in GitHub Desktop.
Save alexandream/2466746 to your computer and use it in GitHub Desktop.
Print 1 to 100 without loops or conditionals
#include <iostream>
int n = 1;
struct Printer {
Printer() {
std::cout << n++ << std::endl;
}
} array[100];
int main(int argc, char ** argv) {
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment