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
How do I uninstall visual c++?
How to create a DLL in C++.net 2005 which we can use in VB 6.0 application ?
Do I need the microsoft visual c++?
What is cwinthread class?
What is a copy constructor? What is the need for it?
How can we use cmutex?
How do I uninstall and reinstall microsoft visual c++ runtime libraries?
What is visual c++ redistributable?
What is visual c++ 2008 redistributable x64?
What is vcredist?
Is microsoft visual c++ a virus?
What is difference between c++ and vc++?
How do I change visual code font?
What is vcredist_x86 exe?
Explain pointer to the constant and constant pointer? Explain difference between them.