diff options
Diffstat (limited to '3/part1.c')
| -rw-r--r-- | 3/part1.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,7 +31,7 @@ int count_trees(const char *filename) return hit; } -int main() +int main(int argc, char *argv[]) { - printf("%i", count_trees("input")); + printf("%i", count_trees(argv[1])); } |
