// A Command Line Arguments demo
// Showing the ability to read command line arguments
// as numbers and using them
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int total = 0;
int i = 1;
while (i < argc) { // have added i - 1 numbers to the total
total += strtol(argv[i], NULL, 10);
i++;
}
printf("Total is %d.\n", total);
}
Resource created Tuesday 31 March 2020, 07:38:10 PM.
file: adder.c