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 repaint when working with horizontal scroll bar
how many types of classes are ther,what are that
if i modified data in 1 view how does the other view knows
What is LoadLibrary function returns?
What is #progma and where it is used?
How do you change the properties for a tree view control that is part of the CTreeView class?
1)How to change a text of a button as Dynamically?
What is LPCTSTR? What does LP denote it?
what is the difference between compiling and building?
Why not virtual functions to handle messages?
what is the use of CCmdTarget?
Have you ever used win32 APIs ?