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

Can I uninstall visual c++?

0 Answers  


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

2 Answers  


How many microsoft visual c++ do you need?

0 Answers  


What is the Use of the Developer Studio Editor?

0 Answers   HCL,


What is the RGB macro used for?

1 Answers  






What is odbc in vc ++?

0 Answers  


Do you need microsoft visual c++?

0 Answers  


Where can I find microsoft visual c++ on my computer?

0 Answers  


How a dll will be sharable by more than one exe?

4 Answers   CA,


Can I remove microsoft visual c++?

0 Answers  


How do you define a function in vc++?

1 Answers  


Differences between vc 6.0 and vc 7.0

1 Answers   Honeywell,


Categories