※ 引述《exprission (安安你好幾歲住哪)》之銘言:
: 開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
: C
: 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
: 問題(Question):
: 程式沒有辦法順利執行
: 餵入的資料(Input):
: 預期的正確結果(Expected Output):
: 錯誤結果(Wrong Output):
: 程式碼(Code):(請善用置底文網頁, 記得排版)
: #include <stdio.h>
: #include <stdlib.h>
: #include <string.h>
: void reverse(char *s) {
: int i, j;
: char c;
: for (i = 0, j = strlen(s) - 1; i < j; i++, j