指針與數組練習題

題 4 編寫下列函數: void find_two_largest(int a[],int n,int *largest,int *second_largest); 當傳遞長度爲n的數組時,函數將在數組a中搜尋最大元素和第二大元素,把它們存儲在分別largest和second_largest指向的變量中。 答:程序如下: #include<stdio.h> #include<stdlib.h> #
相關文章
相關標籤/搜索