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 |
What property is used to indicate that the up-down control is associated with a buddy control?
how i can design a user interface in vc++ for getting inputs from users
What is the difference between serialization and deserialization?
4 Answers Cap Gemini, HCL, MBT,
Do I need microsoft visual c++ 2005 redistributable on my computer?
Can I remove microsoft visual c++?
What is the use of microsoft visual c++ 2015 redistributable?
What is the use of DDV and DDX routines ?
how to declare and populate an array of checkBoxes
What is more efficient to pass as a parameter--a pointer or an object? Why?
Explain the important features of vc++?
What is command routing in VC++
What is a glyph?