how i can design a user interface in vc++ for getting
inputs from users



how i can design a user interface in vc++ for getting inputs from users..

Answer / 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

More VC++ AllOther Interview Questions

How do I reinstall microsoft visual c++?

0 Answers  


In which Way invoke context-sensitive help inside the editor?

0 Answers  


How do I install microsoft visual c++ 2015?

0 Answers  


What is type-safety?

1 Answers  


Do I need microsoft visual c++?

0 Answers  


What is the default label used for in a switch statement?

2 Answers  


what is DLL?

7 Answers   Zenith,


How do I uninstall vc++ 2015?

0 Answers  


What is microsoft visual c++ 2005 redistributable?

0 Answers  


What is microsoft visual c++ used for?

0 Answers  


How to Use mfc71d.dll not mfc71.dll ?

1 Answers  


Explain the advantages of cwinthread class.

0 Answers  


Categories