#include #include int carre(int i) { return i * i; } int main(int argc, char *argv[]) { printf("%d\n", carre(3)); return EXIT_SUCCESS; }