C/ctype.h/toupper

Материал из C\C++ эксперт
Версия от 10:23, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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*/