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
Is microsoft visual c++ a virus?
What are the advantages of a message map
Do I need all the microsoft visual c++ redistributable?
hello sir i need movie editing and mixing software .where it is available and what is the site address
In which Way invoke context-sensitive help inside the editor?
What is microsoft visual c++ 2008 redistributable?
What is odbc in vc ++?
What is visual c++ 2008 redistributable x64?
Explain pointer to the constant and constant pointer? Explain difference between them.
What is microsoft visual c++ redistributable and do I need it?
What is microsoft visual c++ 2017 redistributable?
Difference between critical section, mutex and semaphore.
What is microsoft visual c++ 2015 redistributable package x64?
Can I uninstall visual c++?
What is mfc in vc++?