Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Compare and Show latest version
10 files
+ 182
4
Preferences
Compare changes
Files
10
+ 9
0
#include "function.h"
#include <stdio.h>
void afficheTab(int tabAAffiche[], size_t tabTaille){
for(size_t i=0; i<tabTaille; i++){
printf("%d", tabAAffiche[i]);
}
printf("\n");
}