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 |
What is document-view architecture ? Give me one real time example for SDI ?
What function is used to disable a control at runtime?
How can we create thread in MFC framework?
1)does Frame Thickness in MFC?
What is the base class for MFC Framework ?
How to create a Modeless Dialog?
Differ GetMessage, PostMessage & PeakMessage?
Have you ever used win32 APIs ?
What is the difference between the ASSERT and VERIFY macros?
what is the use of CWinApp class?
List out the parameters of WinMain Function.
Explain StretchBlt and BitBlt