Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit 2f62c381
Show latest version
6 files
+ 55
2
Preferences
Compare changes
Files
6
+ 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");
}