Given a function definition as follows:void f(char ch, float x ) { ...... }which one of the following function call statements is right?
A、f("abc",3.0);;
B、f(32,32);;
C、t=f('D',16.5);;
D、f('65',2.8);
发布时间:2025-07-22 01:01:54
A、f("abc",3.0);;
B、f(32,32);;
C、t=f('D',16.5);;
D、f('65',2.8);