John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Status: Tags: Links: C Variables - C Pointers and References


C Constant Pointers

const int* vs int* const

1
2
3
	int x, y;
	int* const const_ptr = &x;
	const_ptr = &y; // NO! Modifying the pointer is not allowed
1
2
3
	const int x = 9;
    const int* ptr = &x;  
	*ptr = 8; // NO! Modifying the data is not allowed

Backlinks

1
list from C Constant Pointers AND !outgoing(C Constant Pointers)

References:

Created:: 2021-09-15 14:44


Interactive Graph