I was just curious to know if it is possible to have a pointer referring to #define constant. If yes, how to do it ?
Thanks.
|
I was just curious to know if it is possible to have a pointer referring to #define constant. If yes, how to do it ? Thanks. |
|||||||||||||
|
|
The Therefore, if you type:
And then later you type:
What your compiler actually sees is simply:
It's basically as if you had opened up your source code in a word processor and did a find/replace to replace each occurrence of "NUMBER" with "100". So your compiler has no idea about the existence of So, if you try to take the address of |
||||
|
|
|
No, because It's generally considered good practice to use constants instead of macros, because of the fact that they actually represent variables, with their own scoping rules and data types. Macros are global and typeless, and in a large program can easily confuse the reader (since the reader isn't seeing what's actually there). |
|||||||||||
|
|
If by " |
|||
|
|
|
No ,It's Not possible in C/C++ You can use the #define directive to give a meaningful name to a constant in your program We can able to use in two forms. Please : See this link http://msdn.microsoft.com/en-us/library/teas0593%28VS.80%29.aspx The #define directive can contain an object-like definition or a function-like definition. Iam sorry iam unable to provide one more wink ... Please see the IBM links..since below i pasted linke link u can get full info from above 2 links |
|||
|
|