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 |
Name the function is used to transfer bitmaps to an output device?
What is the file extension used for C++ class implementation files?
Name the three attributes of a pen?
How will slove problem comes wirh Hybrid Inheritance?
What is visual c++ runtime error?
How do you handle drag and drop in ole?
What is visual c++ runtime?
Explain some of commonly used methods provided by iunknown.
What is visual c++ redistributable?
Name the three types of loops used in C++ programs?
What is a wizard?
what is DLL?