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 are the two forms of the #include preprocessor directive?

1 Answers  


How do I change visual code font?

0 Answers  


What Is InfoViewer?

1 Answers  


What is microsoft visual c++ 2013 redistributable?

0 Answers  


How do you define a function in vc++?

1 Answers  






Name some examples of the different types of windows found in a Windows application?

4 Answers  


Can I delete old microsoft visual c++?

0 Answers  


Difference between getmessage, postmessage & peakmessage.

0 Answers  


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

0 Answers  


How do I get rid of microsoft visual c++ runtime library error?

0 Answers  


What is the file extension used for C++ class implementation files?

3 Answers  


How do you handle drag and drop in ole?

0 Answers  


Categories