/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* megaphone.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos int main(int argc, char **argv) { int i; int j; i = 1; j = 0; if (argc >= 2) { while (argv[i]) { j = 0; while (argv[i][j] != '\0') { std::cout << (char)std::toupper(argv[i][j]); j++; } if (argv[i+1]) std::cout << " "; i++; } } else std::cout << "* LOUD AND UNBEARABLE FEEDBACK NOISE *"; std::cout << std::endl; return (0); }