#include #include #include int main(int argc, char *argv[]) { int i; double t; double sum = 0.0; // check to see if there is at least one argument if( argc < 2 ) { printf("Usage: %s ...\n", argv[0]); printf(" prints out the square root of the sum of squares of the numbers listed\n"); // exit with an error (non-zero value) exit(-1); } // loop over the arguments on the command line printf("\nVector: ( "); for(i=1;i