将c转换为小写; 仅限ASCII

#include stdio.hint lower(int c){if (c = A c = Z)return c + a - A;

编程学习网为您整理以下代码实例,主要实现:将c转换为小写; 仅限ASCII,希望可以帮到各位朋友。

#include <stdio.h>

int lower(int c){
    if (c >= 'A' && c <= 'Z')
        return c + 'a' - 'A';
    else
        return c;
}

int main()
{
    int c;

    while ((c = getchar()) != EOF)
        putchar(lower(c));
    return 0;
}

本文标题为:将c转换为小写; 仅限ASCII

基础教程推荐