Files
SAE32_2024/tests/test-03-circulaire/a.c

13 lines
187 B
C
Raw Normal View History

#include <stdio.h>
#include "b.h"
void functionA() {
printf("Function A called\n");
functionB(); // Appelle une fonction de b.c
}
int main() {
functionA();
return 0;
}