C語言基礎代碼(2)

1.將數組A中的內容和數組B中的內容進行交換。(數組同樣大) 數組 #include <stdio.h> //將數組A中的內容和數組B中的內容進行交換。(數組同樣大) int main(){ int arr1[] = {0,1,2,3,4}; int arr2[] = {5,6,7,8,9}; int len = sizeof(arr1)/s
相關文章
相關標籤/搜索