char input[128]; fgets(input, sizeof(input), stdin); long sum = 0; char *pointer = strtok(input, " "); while (pointer != NULL) { /* `pointer` is now pointing to the next space-delimited number */ /* Convert string to number */ long value = strtol(pointer, NULL, 10); sum...