#include #include "func.h" int main() { int f,s,t,*pf; s=1; t=2; f=suma1(s,t); pf=suma2(&s,&t); if(pf) f=*pf; printf("f=%d",f); }