int test(int, char, double, int);
double two(double, double)
char three (int, int char, double);
I need a statement for the function test with the actual parameters 5, 5,7.3, and 'z'
please help
int test(int, char, double, int);
double two(double, double)
char three (int, int char, double);
I need a statement for the function test with the actual parameters 5, 5,7.3, and 'z'
please help
test ( 5, 5, 7.3, 'z' ) will work.
And, What is your question?
>>I need a statement for the function test
what statements?
I didn't know what they ment by statement
Then you cant possibly expect help. And also, I over looked the code before.
>>char three (int, int char, double);
what is 'int char'?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.