Implement a Copy To All Caps program:
- Read each character from stdin until the end of file
- Output each character to stdout.
- If the character is a lowercase in the English alphabet (a, b, c, … , z) convert it to uppercase.
- Otherwise leave it as it is
Hint: Redirect stdin and stdout using < and >