how i can design a user interface in vc++ for getting
inputs from users
Answer Posted / d.v.rama krishna
While Creating the user interface all the functions should
be public, and all the fuctions are pure virtual functions.
Here is the example code
#define interface struct
interface <inter face name >
{
virtual int add(int x, int y) =0;
};
class A : public <<inter face name>>
{
public:
.
.
int add (int x, int y);
};
int A:: add(int x, int y)
{
return x+y;
}
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
In which Way invoke context-sensitive help inside the editor?
difference between assert and verify.
What is microsoft visual c++ 2005 redistributable?
What is microsoft visual c++ redistributable and do I need it?
Do I need microsoft visual c++?
Explain pointer to the constant and constant pointer?
How you build a project using Developer Studio?
What is mfc in vc++?
How can we use cmutex?
What is vc++ redistributable?
What is vcredist_x86 exe?
Can I remove microsoft visual c++?
Explain the important features of vc++?
What is microsoft visual c++ 2013 redistributable?
How do I reinstall visual c++ on windows 10?