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 are the two forms of the #include preprocessor directive?
How do I change visual code font?
What Is InfoViewer?
What is microsoft visual c++ 2013 redistributable?
How do you define a function in vc++?
Name some examples of the different types of windows found in a Windows application?
Can I delete old microsoft visual c++?
Difference between getmessage, postmessage & peakmessage.
Do I need microsoft visual c++ on my computer?
How do I get rid of microsoft visual c++ runtime library error?
What is the file extension used for C++ class implementation files?
How do you handle drag and drop in ole?