About 9,990,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. c++ - Why use #define instead of a variable - Stack Overflow

    May 14, 2011 · What is the point of #define in C++? I've only seen examples where it's used in place of a "magic number" but I don't see the point in just giving that value to a variable instead.

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

    The #define directive is a preprocessor directive; the preprocessor replaces those macros by their body before the compiler even sees it. Think of it as an automatic search and replace of your …

  5. 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, 5 months ago Modified 7 months ago Viewed 51k times

  6. 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 …

  7. MSBuild: set a specific preprocessor #define in the command line

    Our solution was to use an environment variable with /D defines in it, combined with the Additional Options box in Visual Studio. In Visual Studio, add an environment variable macro, …

  8. Why are #ifndef and #define used in C++ header files?

    I have been seeing code like this usually in the start of header files: #ifndef HEADERFILE_H #define HEADERFILE_H And at the end of the file is #endif What is the purpose of this?

  9. How do I define a function with optional arguments?

    How do I define a function with optional arguments? Asked 13 years, 8 months ago Modified 1 year, 4 months ago Viewed 1.2m times

  10. What is the purpose of using #ifdef and #if in C++?

    2 #ifdef means if defined. If the symbol following #ifdef is defined, either using #define in prior source code or using a compiler command-line argument, the text up to the enclosing #endif is …