To Upper In C

[Solved] To Upper In C | Csharp - Code Explorer | yomemimo.com
Question : toupper function in c

Answered by : amauna

#include <stdio.h>
#include "ctype.h"
int main()
{ char ch; printf("Enter a small letter: "); ch = getchar(); getchar(); printf("Uppercase = %c", toupper(ch));
}

Source : | Last Update : Mon, 18 Jul 22

Answers related to to upper in c

Code Explorer Popular Question For Csharp