ajout de replica

This commit is contained in:
H3XploR
2026-03-29 14:39:56 +02:00
parent 209c27cd97
commit d2c49cb340
6 changed files with 39 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
COLLEEN = colleen
COLLEEN: colleen.o
cc -o colleen colleen.o
colleen.o: colleen.c
cc -c colleen.c
Executable
BIN
View File
Binary file not shown.
+13
View File
@@ -0,0 +1,13 @@
#include <stdio.h>
/* Le commentaire en dehores du programme */
void the_fonction_needed(void){
printf("YO\n");
return;
}
int main(void){
/* LA FONCTION PRINCIPALE */
the_fonction_needed();
return 0;
}