將一個數組中的數據按相反的順序存儲

指針 int a[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 } 處理完後,數組內容變成{0,9,8,7,6,5,4,3,2,1}數組 實現思想:1與0交換,2與9交換,3與8交換...... 內容交換指針 #define _CRT_SECURE_NO_WARINGS 1 #include <stdio.h> #include <stdlib.h> #include
相關文章
相關標籤/搜索