用于交换字符串的 C 函数


以下是交换字符串的一个示例。

示例

 实时演示

#include<stdio.h>
#include <string.h>
int main() {
   char st1[] = "My 1st string";
   char st2[] = "My 2nd string";
   char swap;
   int i = 0;
   while(st1[i] != '\0') {
      swap = st1[i];
      st1[i] = st2[i];
      st2[i] = swap;
      i++;
   }
   printf("After swapping s1 : %s
", st1);    printf("After swapping s2 : %s
", st2);    return 0; }

输出

After swapping s1 : My 2nd string
After swapping s2 : My 1st string

在上面的程序中,声明了两个字符类型数组 st1 和 st2,一个字符变量 ‘swap’ 和一个整数变量 i。while 循环用于检查是否 st1 不为空,然后交换 st1 和 st2 的值。

char st1[] = "My 1st string";
char st2[] = "My 2nd string";
char swap;
int i = 0;
while(st1[i] != '\0') {
   swap = st1[i];
   st1[i] = st2[i];
   st2[i] = swap;
   i++;
}

更新时间: 26-06-2020

670 次浏览

开启您的 事业

完成课程以获取认证

开始
广告