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

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

  3. c - #Define VS Variable - Stack Overflow

    Jun 18, 2012 · #define WIDTH 10 is a preprocessor directive that allows you to specify a name (WIDTH) and its replacement text (10). The preprocessor parses the source file and each …

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

    Oct 30, 2013 · The main use-case for #define is for conditional compilation (where it can be very useful). You're correct that using #define for symbols and (please don't do it) macros, is not a …

  5. 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?

  6. Why do most C developers use define instead of const?

    Mar 4, 2017 · #define simply substitutes a name with its value. Furthermore, a #define 'd constant may be used in the preprocessor: you can use it with #ifdef to do conditional compilation …

  7. Advantage and disadvantages of #define vs. constants?

    Dec 22, 2009 · Can someone point out the advantages and disadvantages of using #define versus constants? Most of my work is done in C and Objective-C.

  8. c - "static const" vs "#define" vs "enum" - Stack Overflow

    Nov 4, 2009 · Which one is better to use among the below statements in C? static const int var = 5; or #define var 5 or enum { var = 5 };

  9. 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?

  10. What is define([ , function ]) in JavaScript? - Stack Overflow

    What is define ( [ , function ]) in JavaScript? [duplicate] Asked 12 years, 5 months ago Modified 2 years, 10 months ago Viewed 240k times