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 |
Why Array Index starts from Zero
how does conditionally close the Dialog Box ?
List out the basic features of MFC.
What is the difference between the Encapsulation and Abstraction
25 Answers HCL, Invensys, TCS, Wipro,
What is a critical section and how is it implemented?
What is the base class for MFC Framework ?
What are the types of button controls?
how does the UIThread and worker thread communicates and handle events
What does mfc stand for?
1) How do you Destroy a Dialog Box ?
What is the difference between Synchronous sockets and asynchronous sockets?
Tell me the work of HTREDUCE and HTZOOM