#include <stdio.h>#include <ctype.h> int main() { char ch = 'I'; printf("is : %c\n", tolower('W')); }
is : w
Previous Question Next Question
Your comments will be displayed only after manual approval.