Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit a5fc808e
Show latest version
8 files
+ 31
4
Preferences
Compare changes
Files
8
+ 22
2
#include "function.h"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void afficheTab(int tabAAffiche[], size_t tabTaille){
printf("| ");
for(size_t i=0; i<tabTaille; i++){
printf("%d", tabAAffiche[i]);
if(i==tabTaille-1){
printf("%d", tabAAffiche[i]);
}
else{
printf("%d - ", tabAAffiche[i]);
}
}
printf(" |\n");
}
void genTabAlea(int tabARemplir[], size_t tailleTab) {
int rand_is_seeded = 0;
if(!rand_is_seeded)
{
srand(time(NULL));
rand_is_seeded = 1;
}
for(size_t i=0; i<tailleTab; i++){
tabARemplir[i]=rand()%(10);
}
printf("\n");
}