Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit 0dfbf367
Show latest version
2 files
+ 29
6
Preferences
Compare changes
Files
2
+ 6
6
@@ -7,13 +7,13 @@
int main(int argc, char const *argv[]) {
long tableauBis[20];
memset(tableauBis, 0, 20*sizeof(long));
long tableauBis[5000];
memset(tableauBis, 0, 5000*sizeof(long));
printf("--- Tableau initial insertion ---\n");
genTabAlea(tableauBis,20);
afficheTab(tableauBis,20);
tri_insertion(tableauBis,20);
afficheTab(tableauBis,20);
genTabAlea(tableauBis,5000);
//afficheTab(tableauBis,5000);
tri_insertion(tableauBis,5000);
//afficheTab(tableauBis,5000);
printf("\n\n");