0
Write two C functions that compute f(x)=2.3*x and g(x,y)=x*y
Friends whoever understands this questions..just give some idea to do this
3 Antworten
+ 1
float f(float x) {
return 2.3 * x;
}
float g(float x, float y) {
return x * y;
}
0
you just need to code two functions: One must return 2.3*x
the other must return x*y
0
Xavier Heugue Thank you my friend😊