/*
 * Program to echo command-line arguments.
 *
 * Input:  zero or more command-line arguments.
 *
 * Output:  prints arguments, one per line, including 0th argument
 *   (name of program).
 */
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char * argv[]) {
	int i;
	for (i = 0; i < argc; ++i) {
		printf("%s\n", argv[i]);
	}
	return EXIT_SUCCESS;
}