C 練習(xí)實例35

C 語言經(jīng)典100例 C 語言經(jīng)典100例

題目:字符串反轉(zhuǎn),如將字符串 "o2fo.com" 反轉(zhuǎn)為 "moc.boonur.www"。

程序分析:無。

程序源代碼:

//  Created by o2fo.com on 15/11/9.
//  Copyright © 2015年 W3Cschool教程. All rights reserved.
//

#include <stdio.h>


void reverse(char* s)
{
    // 獲取字符串長度
    int len = 0;
    char* p = s;
    while (*p != 0)
    {
        len++;
        p++;
    }
    
    // 交換 ...
    int i = 0;
    char c;
    while (i <= len / 2 - 1)
    {
        c = *(s + i);
        *(s + i) = *(s + len - 1 - i);
        *(s + len - 1 - i) = c;
        i++;
    }
}

int main()
{
    char s[] = "o2fo.com";
    printf("'%s' =>\n", s);
    reverse(s);           // 反轉(zhuǎn)字符串
    printf("'%s'\n", s);
    return 0;
}

以上實例輸出結(jié)果為:

'o2fo.com' =>
'moc.boonur.www'

C 語言經(jīng)典100例 C 語言經(jīng)典100例