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)How to change a text of a button in runtime?
What is model and modeless dialog box ? Give some examples?
what is the meaning of constant FILE EXCEEDS LENGTH LIMIT while loading from ps file to vsam in the jcl?
Tell me the different controls in MFC ?
how does the UIThread and worker thread communicates and handle events
If application hangs while SendMessage is waiting for the result, how you handle it?
How to update windows title bar dynamically?
How do you change the properties for a tree view control that is part of the CTreeView class?
What is the base class for MFC Framework ?
2.create for 10 batch: Employee_Number Employee_name Employee_Dateofjoining Employee_address Employee_salary 1.select the employee name who deriving more than 10 thousand salary and joined before august 08. use structure and pointers
What is CArchive class dowes?
Which MFC function is used to display output?