Objective
Write a program that prints the number of arguments passed after the executable name.
Steps
$ ./arg_count alpha beta gamma
3
$ ./arg_count
0
Expected files
Allowed functions

Objective
Write a program that prints the number of arguments passed after the executable name.
Steps
$ ./arg_count alpha beta gamma
3
$ ./arg_count
0
Expected files
Allowed functions

Tests
Run the tests to grade your code