The source project of this merge request has been removed.
Ensure newline is printed
Using puts() instead of printf() to ensure that the program prints a trailing newline. Also changed char *argv[] to char **argv; I think it's generally good to avoid the array syntax since argv is really just a pointer, not a Java-style array of strings.