406.
設計說明:
1. 修改程式碼片段中的程式語法、邏輯上的錯誤,執行結果如範例圖。
參考程式碼:
TQC+ C 試題總整理
- #include <stdio.h>
- #include <stdlib.h>
- void change(int *, int *);
- int main ( )
- {
- int i=100, j=200;
- printf("交換前i與j的值: \n");
- printf("i=%d, j=%d\n", i, j);
- change(&i, &j);//取出記憶體位址
- printf("交換後i與j的值: \n");
- printf("i=%d, j=%d\n", i, j);
- system("PAUSE");
- return 0;
- }
- void change(int *x, int *y)//接收到記憶體位址
- {
- int temp;//宣告一個整數變數
- temp=*x;//把x記憶體中的資料寫進去
- *x=*y;//把x記憶體中的資料改成y記憶體中的資料
- *y=temp;//把y記憶體中的資料改成暫存的資料
- }
TQC+ C 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com