About 50 results
Open links in new tab
  1. How to keep one variable constant with other one changing with row …

    How to keep one variable constant with other one changing with row in excel Asked 16 years, 2 months ago Modified 3 years, 7 months ago Viewed 919k times

  2. Dynamic Constant Line in PowerBI Line Chart - Stack Overflow

    Mar 13, 2024 · 0 I have a line graph that I'm attempting to create a constant line that is based on a value that's in the chart. What I need is the value in [Sept 2023-5%=constant line]. The problem is the …

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

    Apr 21, 2010 · 13 You can use a namedtuple as a workaround to effectively create a constant that works the same way as a static final variable in Java (a Java "constant"). As workarounds go, it's sort of …

  4. c - Constant pointer vs Pointer to constant - Stack Overflow

    Jan 31, 2014 · A constant pointer is a pointer that cannot change the address its holding. In other words, we can say that once a constant pointer points to a variable then it cannot point to any other variable.

  5. C++26 constant_wrapper and constant_arg_t - Stack Overflow

    Feb 17, 2026 · C++26 introduces constant_wrapper which is a powerful wrapper of compile-time constant as a type system part. C++26 also introduces function_ref, which has its own …

  6. c - Error "initializer element is not constant" when trying to ...

    The above N would be a constant in C++, but it is not a constant in C. So, if you try doing ... you will get the same error: an attempt to initialize a static object with a non-constant. This is the reason why, in …

  7. How to use the PI constant in C++ - Stack Overflow

    Nov 13, 2009 · I want to use the PI constant and trigonometric functions in some C++ program. I get the trigonometric functions with include <math.h>. However, there doesn't seem to be a definition for …

  8. C++ compile time error: expected identifier before numeric constant

    C++ compile time error: expected identifier before numeric constant Asked 13 years, 9 months ago Modified 3 years, 1 month ago Viewed 184k times

  9. How to get rid of `deprecated conversion from string constant to ‘char ...

    Sep 13, 2008 · I'm working on an exceedingly large codebase, and recently upgraded to GCC 4.3, which now triggers this warning: warning: deprecated conversion from string constant to ‘char*’ Obviously, …

  10. .net - Creating a constant Dictionary in C# - Stack Overflow

    Creating a truly compile-time generated constant dictionary in C# is not really a straightforward task. Actually, none of the answers here really achieve that. There is one solution though which meets …