- 3
Type in a code to declear function test ()taking two float parameters void(_a,_b)
C programming
5 ответов
+ 2
Type in a code to declare function test() taking two float parameters:
void test(
float
a,
float
b);
+ 1
void test(float a, float b);
0
What is the two float parameter in test()
0
Function Parameters
Type in a code to declare function test() taking two float parameters:
void test(
a,
b);
- 1
Hint: Float parameters.