2007年10月4日 星期四

小考七(A) 題目


/*
小考七題目:
利用指標傳遞字串到函數,完成
1. 函數 add10,在函數中,字串的每個字元會纍加10。
2. 函數 display,顯示輸入的字串。
3. 呼叫 add10 和 display,以顯示完成後輸出字串。

提示一:輸入為指定的字串指標 ptr。
提示二:結束字元為 '\0'。

*/

#include <stdio.h>
#include <stdlib.h>

void add10(char *);
void display(char *);

int main(void)
{
char school[] = "I^_^9^_[dKd_l[hi_joAWe^i_kd]9Wcfki";
char *ptr;

ptr = school;

/* your program is here */

system("pause");
return 0;
}

/* your program is here */

解答下載
返回小考目錄
回到首頁

沒有留言: