error when rename pointer names



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)

E:\programs\c_lang\iti01\tc201\ch05\own>tcc pnt02o04
Turbo C Version 2.01 Copyright (c) 1987, 1988 Borland International
pnt02o04.c:
Error pnt02o04.c 44: Declaration syntax error
*** 1 errors in Compile ***

Available memory 396264


#include "stdio.h"

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


void input_meter(float *me)
{
printf("\nEnter size in meter : ");
scanf("%f",me);
}

void convert_meter(float *me,float *d,float *p)
{
*d=((*me)*300)/(0.0254);
*p=((*me)*720)/(0.0254);
printf("\n %f Meter is = %f dots %f points",*me,*d,*p);
}


char another()
{
char ans;
printf("\n\n Do you want to procees (y/n) : ");
scanf("\n");
scanf("%c",&ans);
return ans;
}

.



Relevant Pages

  • [PATCH 2.6.19-rc1 V9] drivers: add LCD support
    ... Adds support for the ks0108 LCD Controller as a device driver. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ...
    (Linux-Kernel)
  • [PATCH 2.6.19-rc1 V9] drivers: add LCD support
    ... Adds support for the ks0108 LCD Controller as a device driver. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ...
    (Linux-Kernel)
  • Re: back once again...
    ... reference to type ... a, signed char ... int dycObjectP(dyt obj); ... void dycBeginClass; ...
    (comp.lang.misc)
  • [PATCH 2.6.18 V8] drivers: add LCD support
    ... Adds a LCD class for registering LCD devices. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ...
    (Linux-Kernel)
  • [PATCH 2.6.18 V7] drivers: add lcd display support
    ... Adds support for the cfag12864b LCD Display as a device driver. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ...
    (Linux-Kernel)