Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit eb054afd
Show latest version
12 files
+ 137
30
Preferences
Compare changes
Files
12
@@ -3,20 +3,20 @@
@@ -3,20 +3,20 @@
#include <stdlib.h>
#include <stdlib.h>
#include <time.h>
#include <time.h>
void afficheTab(int tabAAffiche[], size_t tabTaille){
void afficheTab(long tabAAffiche[], size_t tabTaille){
printf("| ");
printf("[ ");
for(size_t i=0; i<tabTaille; i++){
for(size_t i=0; i<tabTaille; i++){
if(i==tabTaille-1){
if(i==tabTaille-1){
printf("%d", tabAAffiche[i]);
printf("%ld", tabAAffiche[i]);
}
}
else{
else{
printf("%d - ", tabAAffiche[i]);
printf("%ld, ", tabAAffiche[i]);
}
}
}
}
printf(" |\n");
printf(" ]\n");
}
}
void genTabAlea(int tabARemplir[], size_t tailleTab) {
void genTabAlea(long tabARemplir[], size_t tailleTab) {
int rand_is_seeded = 0;
int rand_is_seeded = 0;
if(!rand_is_seeded)
if(!rand_is_seeded)
{
{