Facebook
From biplob ahmed, 1 Month ago, written in C.
Embed
Download Paste or View Raw
Hits: 123
  1. #include<stdio.h>
  2. #include<ctype.h>
  3.  
  4.  int main (){
  5.  
  6.     char ch;
  7.     printf("Enter an Uppercase letter: ");
  8.     scanf("\n%c", &ch;);
  9.  
  10.     ch = tolower(ch);
  11.     printf("\nThe lower version using library function is: %c", ch);
  12.  
  13.     return 0;
  14.  }