#include extern char *invert(char *); int main(int argc,char *argv[]) { char *pointer; pointer=strdup("Prova"); printf("%s",invert(pointer)); }