int * fun1 (void){ int *Ptr; *Ptr = 10; return Ptr;}int * fun2 (void){ int *Ptr; Ptr = (int *) malloc( sizeof (int)); return Ptr;}