題目:
完成程式,實現對陣列的降序排序
#include
void sort();
int main() ; //數字任意給出
sort();
return 0;
}void sort()
#include
int array[10]=;
int i;
sort(array,(sizeof(array)/sizeof(array[0]))-1);
for(i=0;i<(sizeof(array)/sizeof(array[0]))-1;i++)
return 0;
}void sort(int *arr,int len)
}}
}
gcc (gcc) 3.2.2 20030222 (red hat linux 3.2.2-5)
執行過程:
[explover@explover 20081101]$ gcc -g sort.c -o sort
[explover@explover 20081101]$ ./sort
234
76
56
45
34
23
3
2
1
(本人水平有限,不足之處,請大家多多指正,謝謝!)
面試題解 四 之Sony 筆試題
下列程式執行時會崩潰,請找出錯誤並改正,並且說明原因。include include typedef struct tnode tnode root null int main tnode newnode tnode malloc sizeof tnode newnode value n if ro...
面試題解 五 之聯想筆試題
設計函式 int atoi char s include include int main void int atoi const char s return symbol 1 v v gcc gcc 3.2.2 20030222 red hat linux 3.2.2 5 執行過程 explove...
筆試面試題二
1 c字串是以 0 字元作為結束標誌的 char p abcde 0fghjik 0 printf d n strlen p 5 a b c d e char acnew 20 0 0 printf d n strlen acnew 2 和0 2 建構函式和虛析構函式 include stdafx....