#include int main() { char ch; printf("enter uppercase letters: "); scanf("\n%c", &ch;); ch = ch + 32; printf("\nResult: %c", ch); return 0; }