Write a program to convert capital letter into small letter | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Write a program to convert capital letter into small letter

17th Sep 2021, 8:36 AM
EswaraDeepthi Challamalla
EswaraDeepthi Challamalla - avatar
1 Antwort
+ 2
Use pre defined function tolower(ch) char ch = 'A'; printf ("%c",tolower(ch));
17th Sep 2021, 8:38 AM
Niththish
Niththish - avatar