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 |
Explain the advantages of cwinthread class.
A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.
What function is used to trap all mouse messages?
What is microsoft visual c++ 2008 redistributable and do I need it?
Does visual c++ 2017 replace 2015?
What is the return value when the InsertItem function fails?
What is visual c++ 2008 redistributable x64?
What is microsoft visual c++ 2005 redistributable?
Can I remove microsoft visual c++?
What is microsoft visual c++ redistributable and do I need it?
What is iunknown? Explain some of commonly used methods provided by iunknown.
What is mfc in vc++?