Skip to main content

Const Qualifier

  • Chapter
  • First Online:
Modern C for Absolute Beginners
  • 3094 Accesses

Abstract

To make the variable a read-only, we apply the const qualifier to its declaration. Once initialized or assigned to, these variables become read-only. Attempting to change their values results in a compile-time error. Let us write an example that defines a few simple constants:

#include <stdio.h> int main(void) {       const char c = 'a';       const int x = 123;       const double d = 456.789;       printf("We have defined three constants.\n");       printf("Their values are: %c, %d, %.3f.\n", c, x, d); }

This is a preview of subscription content, log in via an institution to check access.

Access this chapter

Chapter
USD 29.95
Price excludes VAT (USA)
  • Available as PDF
  • Read on any device
  • Instant download
  • Own it forever
eBook
USD 39.99
Price excludes VAT (USA)
  • Available as EPUB and PDF
  • Read on any device
  • Instant download
  • Own it forever

Tax calculation will be finalised at checkout

Purchases are for personal use only

Institutional subscriptions

Author information

Authors and Affiliations

Authors

Rights and permissions

Reprints and permissions

Copyright information

© 2021 Slobodan Dmitrović

About this chapter

Check for updates. Verify currency and authenticity via CrossMark

Cite this chapter

Dmitrović, S. (2021). Const Qualifier. In: Modern C for Absolute Beginners. Apress, Berkeley, CA. https://doi.org/10.1007/978-1-4842-6643-4_19

Download citation

Publish with us

Policies and ethics