how i can design a user interface in vc++ for getting
inputs from users
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 |
difference between assert and verify.
Name the three attributes of a pen?
Name the function is used to transfer bitmaps to an output device?
What is a transparent image?
How do you define a function in vc++?
#include<stdio.h>int(){int a,*b,**c,***d,****e; a=10;b=&a;c=&b;d=&c;e=&c;printf("a=%d b=%u c=%u d=% e=%u",a,b,c,d,e);printf ("%d%d%d\n",a,a+?*b,**c+***d+,****e);return0;}
What keyboard editor command is used for Undo?
What is visual c++ 2008 redistributable x64?
Differences between vc 6.0 and vc 7.0
What is the use of microsoft visual c++ 2015 redistributable?
How do I uninstall and reinstall microsoft visual c++ runtime libraries?
What is cwinthread class?