feat(lab03): update main with ex 1

This commit is contained in:
2026-04-02 13:52:30 +02:00
parent 183e6243eb
commit 62e059775c
-9
View File
@@ -3,8 +3,6 @@
#include "exercice/ex1-memory-oriented.c"
#define MEMORY_ORIENTED
#include "exercice/ex2-charachter-oriented.c"
// #define CHARACTER_ORIENTED
int main() {
@@ -16,12 +14,5 @@ int main() {
ret = ex_memory_oriented();
#endif
#ifdef CHARACTER_ORIENTED
printf("--------------------------------------\n");
printf("Exercice 2: Character oriented exercice\n");
ret = ex_character_oriented();
#endif
return ret;
}