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++ important?
What is vcredist_x86 exe?
What is visual c++ runtime error?
What is microsoft visual c++ 2010 x86 redistributable?
Difference between critical section, mutex and semaphore.
How do I reinstall microsoft visual c++?
What is microsoft visual c++ 2015 redistributable?
Does visual c++ 2017 replace 2015?
What is the use of message map? Advantages of a message map.
What is cwinthread class? Explain its advantages.
What is the Use of the Developer Studio Editor?
What is iunknown? Explain some of commonly used methods provided by iunknown.
How you build a project using Developer Studio?
What is the difference between turbo c++ and visual c++?
Do I need microsoft visual c++ on my computer?