बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

C program to accept a string and convert it in to lower case using pointer

C program to accept a string and convert it in to lower case using pointer



#include
#include
void main()
{
 char str[50];
 int i;
 clrscr();
 puts("Enter string:");
 gets(str);
 for(i=0;*(str+i)!='\0';++i)
 {
  if(*(str+i)>='A' && *(str+i)<='Z')
    *(str+i)=*(str+i)+32;
 }
 puts(str);
 getch();
}

C Program example List