#include <stdio.h>//// Mettere qui il prototipo della funzione «fattoriale».// // Mettere qui la descrizione della funzione «fattoriale».//int main (void){ unsigned int x = 7; unsigned int f; f = fattoriale (x); printf ("Il fattoriale di %d è pari a %d.\n", x, f); getchar (); return 0;}
Standard input is empty
prog.c: In function ‘main’: prog.c:11: warning: implicit declaration of function ‘fattoriale’ /home/bjmSkJ/ccoVyDG4.o: In function `main': prog.c:(.text+0x16): undefined reference to `fattoriale' collect2: ld returned 1 exit status
Standard output is empty
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!