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

What property is used to indicate that the up-down control is associated with a buddy control?

1 Answers  


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

1 Answers   Path Finders, TCS,


What is the difference between serialization and deserialization?

4 Answers   Cap Gemini, HCL, MBT,


Do I need microsoft visual c++ 2005 redistributable on my computer?

1 Answers  


Can I remove microsoft visual c++?

1 Answers  


What is the use of microsoft visual c++ 2015 redistributable?

1 Answers  


What is the use of DDV and DDX routines ?

4 Answers   TCS,


how to declare and populate an array of checkBoxes

1 Answers  


What is more efficient to pass as a parameter--a pointer or an object? Why?

1 Answers  


Explain the important features of vc++?

1 Answers  


What is command routing in VC++

3 Answers   Siemens,


What is a glyph?

2 Answers  


Categories