1 2 3 4 5 6 7
int main (int argc, char** argv) { int result = 1; for (int n = argc; n; n = n - 1) { result = result * n; } return result; }