Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR 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));  
}
 
PREVIOUS NEXT
Tagged: #toupper #function
ADD COMMENT
Topic
Name
6+4 =