void Graphic::goRigh t(void)
{
int x;
int y;
x = whereX();
y = whereY();
gotoxy(x+1,y);
};
Q- why is this function terminated by semicolon(;)
{
int x;
int y;
x = whereX();
y = whereY();
gotoxy(x+1,y);
};
Q- why is this function terminated by semicolon(;)
Comment