In c programming language,o if the character is a lowercase in the | csc 415 | San Francisco State University

  

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 >