COHERENT manpages

This page displays the COHERENT manpage for const [Qualify an identifier as not modifiable].

List of available manpages
Index


const -- C Keyword

Qualify an identifier as not modifiable

The type qualifier const marks  an object as being unmodifiable.  An object
declared as  being const cannot be  used on the left  side of an assignment
(an  lvalue), or  have its  value modified  in any  way.  Because  of these
restrictions, an implementation may place objects declared to be const into
a read-only region of storage.

See Also

C keywords,
volatile
ANSI Standard §6.5.3