C programming Part II
Assuming the existence of an executable program name "test", what would be
output running the program containing the code below from the command line
using: "test How now brown cow?"
for (int i = 0; i < argc; i++)
{
printf("%s ", argv[i]);
}