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 |
How to convert the content of buffer into lower case character.
1) Enable or disable a Cancel button at run time?
Explain the flow of SDI application?
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
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 the difference between OnInitialUpdate and OnUpdate?
How to handle RTTI in MFC ?
Explain StretchBlt and BitBlt
What is the use of UpdateData funciton ?
If i derive a new class from CObject what are the basic features my derived wil get ?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
What is the command routing in MFC framework?