0
where they declared obj?
4 ответов
0
in main function
0
in the main function
0
in the main function
0
void main()
{
clrscr();
demo d; //demo is our class name
d.display(); //display is member function
//of class demo in public sec.
getch();
}