#include int main () { float a = 0, b = 5; printf ("%f\n", soma (a, b)); return 0; } float soma (float op1, float op2) { return (op1 + op2); }