C PROGRAM EXAMPLE FOR tolower() FUNCTION
C PROGRAM EXAMPLE FOR tolower() FUNCTION
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#include <stdio.h> //#include<string.h> int main() { int i; char str[20]; printf("\n >>> C PROGRAM TO IMPLEMENT tolower() FUNCTION <<< \n"); printf("\n Enter the string in Caps or Mixed Case: "); //scanf("%s",&str); //wont allow spaces gets(str); //gets() allows apaces printf("\n The entered string in Lower Case is: "); for(i=0;i<=strlen(str);i++) { printf("%c",tolower(str[i])); } getch(); return 0; } |