float function( )

Suman Barik
0

#include <iostream>


using namespace std;


float func(float a, float b) {


    return a * b;

    

}


int main(){


  cout << func(8.5,6.6);

  

  return 0;

  

}

Post a Comment

0Comments
Post a Comment (0)