1 | #include <iostream> |
---|---|
2 | |
3 | using namespace std; |
4 | |
5 | int |
6 | main (int argc, char **argv) |
7 | { |
8 | /* Complexity to keep gcc from optimizing this away. */ |
9 | cout << (argc > 1 ? argv[1] : "null"); |
10 | return 0; |
11 | } |
12 |
1 | #include <iostream> |
---|---|
2 | |
3 | using namespace std; |
4 | |
5 | int |
6 | main (int argc, char **argv) |
7 | { |
8 | /* Complexity to keep gcc from optimizing this away. */ |
9 | cout << (argc > 1 ? argv[1] : "null"); |
10 | return 0; |
11 | } |
12 |