Ctype H C

//Declaration:  int toupper(int ch); 
//Function:     returns the uppercase equivalent of ch if ch is a letter or ch is returned unchanged. 
  
#include 
#include 
int main(void){
  putchar(toupper('a'));
}
         
/*
A*/