#include float suma(float, float); main(){ float x; x = suma(2.5,7.2); printf("%f\n",x); } float suma(float a, float b){ return a+b; }