Search
 
SCRIPT & CODE EXAMPLE
 

C

toupper function in c

#include <stdio.h>
#include "ctype.h"

int main()
{
    char ch;
        
    printf("Enter a small letter: ");
    ch = getchar();
    getchar();
    printf("Uppercase = %c", toupper(ch));  
}
Comment

PREVIOUS NEXT
Code Example
C :: remove axis numpy array 
C :: pyramid using c 
C :: how to read keyboard input in C 
C :: what is string::npos 
C :: c int to char 
C :: how to get input in 2d array in c 
C :: enable disable audio listener unity 
C :: addition of two numbers in c 
C :: c read file content 
C :: strings in c 
C :: round float in c 
C :: malloc contiguous 2d array 
C :: check if pid exists c 
C :: adjacency matrix representation maker 
C :: lichess puzzles 
C :: print float number completely in C language 
C :: recursive in c 
C :: c program to implement mv command 
C :: increment and decrement operator 
C :: -42 c to f 
C :: tuples in c 
C :: c unused parameter 
C :: size of int in c 
C :: C How to define a union? 
C :: pathlib exclude hidden file 
C :: ouverture du fichier c 
C :: User input in struct 
C :: phpunit assert continue 
C :: Parsing using strtok 
C :: Integer Xor swap 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =