how i can design a user interface in vc++ for getting
inputs from users
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 |
How do I reinstall microsoft visual c++?
In which Way invoke context-sensitive help inside the editor?
How do I install microsoft visual c++ 2015?
What is type-safety?
Do I need microsoft visual c++?
What is the default label used for in a switch statement?
what is DLL?
How do I uninstall vc++ 2015?
What is microsoft visual c++ 2005 redistributable?
What is microsoft visual c++ used for?
How to Use mfc71d.dll not mfc71.dll ?
Explain the advantages of cwinthread class.