Re: error when rename pointer names



ehabaziz2...@xxxxxxxxx wrote:
When I rename the variables d,p TO : do,po in all the module of :
void convert_meter(float *me,float *d,float *p)
I got an error of that line of : void convert_meter(float *me,float
*d,float *p)

What happens when you rename d to while?
What happens when you rename d to for?

Hint:

do {
input_meter(&meter);
convert_meter(&meter,&dots,&points);
} while (another()=='y');

--
Peter

.