C/ctype.h/toupper — различия между версиями
| Admin (обсуждение | вклад)  м (1 версия: Импорт контента...) | |
| (нет различий) | |
Текущая версия на 10:23, 25 мая 2010
toupper: returns the uppercase equivalent of ch if ch is a letter or ch is returned unchanged
    
//Declaration:  int toupper(int ch); 
//Function:     returns the uppercase equivalent of ch if ch is a letter or ch is returned unchanged. 
  
#include <ctype.h>
#include <stdio.h>
int main(void){
  putchar(toupper("a"));
}
         
/*
A*/