About 9,550,000 results
Open links in new tab
  1. c++ - What does ## in a #define mean? - Stack Overflow

    In other words, when the compiler starts building your code, no #define statements or anything like that is left. A good way to understand what the preprocessor does to your code is to get …

  2. Is it possible to use a if statement inside #define?

    As far as I know, what you're trying to do (use if statement and then return a value from a macro) isn't possible in ISO C... but it is somewhat possible with statement expressions (GNU …

  3. How can I use #if inside #define in the C preprocessor?

    How can I use #if inside #define in the C preprocessor? Asked 15 years, 6 months ago Modified 8 months ago Viewed 51k times

  4. What is the difference between #define and const? [duplicate]

    The difference is that #define is processed by the preprocessor doing what amounts to simple text replacement. Const values defined like this are not visible for the actual compiler, while a …

  5. Difference between `constexpr` and `#define` - Stack Overflow

    Feb 12, 2021 · So I read the interesting answers about what are the differences between constexpr and const but I was curious about are the differences between #define and …

  6. c++ - 'static const' vs. '#define' - Stack Overflow

    Oct 28, 2009 · Is it better to use static const variables than #define preprocessor? Or does it maybe depend on the context? What are advantages/disadvantages for each method?

  7. What is the purpose of the #define directive in C++?

    May 10, 2010 · #define to define numerical constants can be easily replaced by a const "variable", that, as a #define, doesn't really exist in the compiled executable. AFAIK it can be used in …

  8. c preprocessor - Is there a good reason for always enclosing a …

    #define _add_penguin(a) penguin ## a #define add_penguin(a) _add_penguin(a) #define WIDTH (100) #define HEIGHT 200 add_penguin(HEIGHT) // expands to penguin200 …

  9. c# - How do you use #define? - Stack Overflow

    Oct 30, 2013 · 8 #define is used to define compile-time constants that you can use with #if to include or exclude bits of code.

  10. How do I declare custom exceptions in modern Python?

    How do I declare custom exception classes in modern Python? My primary goal is to follow whatever standard other exception classes have, so that (for instance) any extra string I …