Objective
Write a program that adds all integer arguments passed to it and prints the total.
Steps
$ ./argv_sum 3 7 2
12
$ ./argv_sum -4 10
6
$ ./argv_sum
0
Expected files
Allowed functions

Objective
Write a program that adds all integer arguments passed to it and prints the total.
Steps
$ ./argv_sum 3 7 2
12
$ ./argv_sum -4 10
6
$ ./argv_sum
0
Expected files
Allowed functions

Tests
Run the tests to grade your code