About 3,940,000 results
Open links in new tab
  1. c - Constant pointer vs Pointer to constant - Stack Overflow

    Jan 31, 2014 · A constant pointer is declared as : int *const ptr ( the location of 'const' make the pointer 'ptr' as constant pointer) 2) Pointer to Constant : These type of pointers are the one …

  2. c++ - What is the difference between const int*, const int * const, …

    Jul 17, 2009 · const int* is the same as int const* and means "pointer to constant int". const int* const is the same as int const* const and means "constant pointer to constant int". Edit: For …

  3. How to keep one variable constant with other one changing with …

    Jan 25, 2016 · Lets say I have one cell A1, which I want to keep constant in a calculation. For example, I want to calculate a value like this: =(B1+4)/(A1) How do I make it so that if I drag …

  4. How to declare a constant in Java? - Stack Overflow

    Oct 9, 2012 · indeed, it isn't compile-time constant. However, the definition "In computer programming, a constant is a value that cannot be altered by the program during normal …

  5. How do I create a constant in Python? - Stack Overflow

    Apr 21, 2010 · A constant can be set up, but can not be changed or deleted. Value of constant may any immutable type, as well as list or set. Besides if value of a constant is list or set, it will …

  6. Java switch statement: Constant expression required, but it IS …

    1 - The constant expression restrictions can be summarized as follows. Constant expressions a) can use primitive types and String only, b) allow primaries that are literals (apart from null) and …

  7. What is the difference between static const and const?

    Jul 14, 2018 · const int i=5; i value you can modify by using a pointer if i is defined and declared locally, if it is static const int a=5; or const int i=5; globally , you can not modify since it is …

  8. Is there a way to make a TSQL variable constant?

    Aug 25, 2008 · There are no such thing as "creating a constant" in database literature. Constants exist as they are and often called values. One can declare a variable and assign a value …

  9. c++ - error C2059: syntax error: 'constant' from struct member ...

    Oct 26, 2019 · this looks like the easiest way to get the result. I've been in the straight 'C' world for a long time and its been a while since using c++ and I wasn't even familiar with the '{}' based …

  10. .net - C# naming convention for constants? - Stack Overflow

    Oct 28, 2008 · And the fourth one seems to suggest that the rule for a two-letter acryonym extends to a single letter acronym or identifier such as E (which represents the mathematical …

Refresh