Facebook
From biplob ahmed, 1 Month ago, written in C.
Embed
Download Paste or View Raw
Hits: 126
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5.     char ch;
  6.     printf("enter uppercase letters: ");
  7.     scanf("\n%c", &ch;);
  8.  
  9.         ch = ch + 32;
  10.         printf("\nResult: %c", ch);
  11.  
  12.     return 0;
  13. }