Bonjour,
je débute en c et j'ai créé 3 fichiers un fichier main.c, fonctions.c et fonctions.h et j'obtiens une erreur undefined reference to en ligne 7(sur triple). Comment résoudre mon problème?
main.c contient
Code :
- #include <stdio.h>
- #include <stdlib.h>
- #include "fonctions.h"
- int main()
- {
- triple(5);
- return 0;
- }
|
fonctions.c contient
Code :
- #include <stdio.h>
- #include <stdlib.h>
- #include "fonctions.h"
- int triple(int nombre)
- {
- return nombre*3;
- }
|
fonctions.h contient
Code :
- #ifndef FONCTIONS_H_INCLUDED
- #define FONCTIONS_H_INCLUDED
- int triple(int nombre);
- #endif // FONCTIONS_H_INCLUDED
|