13 lines
187 B
C
13 lines
187 B
C
|
#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;
|
||
|
}
|