Ajout du test n°22 + Correction du makefile du projet

This commit is contained in:
2025-03-02 14:06:36 +01:00
parent f694c292d7
commit 2edb7a3ad3
9 changed files with 247 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
main: main.c
gcc -o main main.c

Binary file not shown.

View File

@@ -0,0 +1,7 @@
#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("Ceci est un programme de test pour le test n°22.\n");
return 0;
}