反轉句子

編寫程序將句子反轉, 例如將nice to meet you 反轉成爲 you meet to nicecode void reverse(char *p, char *q){ while(p < q){ char tmp = *p; *p++ = *q; *q-- = tmp; } } char* reverseSentence(char *s){ char *p = s;
相關文章
相關標籤/搜索