Const (computer programming): Difference between revisions

Content deleted Content added
Line 61:
int const *ptrToConst; // *ptrToConst is a constant (int: integer value)
int * const constPtr; // constPtr is a constant (int *: integer pointer)
int const * const constPtrToConst; // constPtrToConst is a constant (pointer) and points
// asto isa *constPtrToConstconstant (value)
</syntaxhighlight>