函數名:swab
頭檔:<stdlib.h>
函式原型: void swab(char *from,char *to,int n);
功能:從來源和目標區域交換位元組
參數: char *from 和char *to 為要交換位元組的字串
int n 為需要交換的位元組數
傳回值:沒有傳回值
程式範例: 使用函數將字串ww.wodctppc.mo交換成www.dotcpp.com.
#include<stdio.h>#include<stdlib.h>#include<string.h>#include<time.h>intmain(void){charsuc[20]={ww.wodctppc.mo};chardes[20] ;swab(suc,des,strlen(suc));printf(Thisisdest:%sn,des);return0;}
運行結果
Thisisdest:www.dotcpp.com