toupper()

#include<stdio.h>
#include<ctype.h>
int main()
{
    char a, b;

    printf("Enter Any Lower Case Letter : ");
    scanf("%c", &a);

    b = toupper(a);

    printf("\nUpper Case Letter : %c", b);

    return 0;
}

Comments