I can i set size of integer variable should be fixed for
different operating systems(Ex i want integer size is
2bytes in OS)
Answers were Sorted based on User's Feedback
Answer / wizards
we can define with #ifdef's
Ex:
#ifdef OS==WINDOWS
int a:32;
#endif
#ifdef OS==UNIX
int a:64;
#endif
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / vijay visana
one can define integer class
like
class Int {
byte data[2];
public:
//overload all basic operation of integer here
//like + - etc
};
| Is This Answer Correct ? | 1 Yes | 3 No |
1)dynamic creation of a Button ?
what are the feauters of CObject
Tell us something about MFC?
Hi can anyone explain about the synchronization objects types and where we are using in the code.
Which Macro is a Super set of other two macro DECLARE_SERIAL,DECLARE_DYNAMIC and DECLARE_DYNCREATE. ?
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
What are the differences between MFC Exception macros and C++ exception keywords?
What is Multithreading
what is the use of CCmdTarget?
What is the range of intensity of RGB
1)set the Title for The File DialogBox, in MFC?