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
Do I need the microsoft visual c++?
Where can I find microsoft visual c++?
How many microsoft visual c++ do you need?
What is vcredist?
What is iunknown?
How do you handle drag and drop in ole?
Can I remove microsoft visual c++?
In which Way invoke context-sensitive help inside the editor?
What are the advantages of a message map
Difference between critical section, mutex and semaphore.
What is visual c++ 2010 redistributable package x64?
Where can I find microsoft visual c++ on my computer?
Difference between getmessage, postmessage & peakmessage.
Does visual c++ 2017 replace 2015?
What is cmutex? How can we use it?