C language uppercase letters to lowercase

Source: Internet
Author: User
Tags uppercase letter

Title: Input a sentence by the keyboard, the total number of characters from 1 to 80 is possible, with a carriage return to the end, the uppercase letter into lowercase letters, other types of characters unchanged, and finally output the transformed sentence.
Analysis: Input sentence can use the Get function, gets () function is used to read the string from the standard input device (keyboard) until the end of the line break, but the newline character will be discarded, and then add ' the ' "characters at the end of the loop to read each character until the read" "\" Stop, Uppercase letters converted to lowercase letter directly to the ASCII value +32

The code is as follows:

#include <stdio.h>intMain () {Chars[ the], i=0;    Gets (s);  while(s[i]!=' /')    {        if(s[i]<='Z'&&s[i]>='A') S[i]+= +; I++; } printf ("%s", s);}
View Code

C language uppercase letters to lowercase

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.