Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7072751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:50:49+00:00 2026-05-28T05:50:49+00:00

I understand what const correctness means and my question is not about what const

  • 0

I understand what const correctness means and my question is not about what const correctness is. So I am not expecting an explanation or C++-FAQ links for that.

My questions are:

  • What are the semantic differences between const in C and const in C++? and
  • What is the reason for the difference?

Quotes from the respective standards which make the differences clear would be nice to have.

I regularly switch between C and C++ and I would like to know the important points that one should keep in mind while doing so.

I don’t seem to remember the reason for these (special thanks if you can provide a reasoning) but from the top of my mind, I can remember:

  • const variables in C++ have internal linkage by default, while in C they have default external linkage;
  • const objects can be used as compile-time values in C++, but cannot be used as compile-time values in C;
  • Pointers to string literals must be an char const* in C++ but in C it can be char*.

What am I missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T05:50:50+00:00Added an answer on May 28, 2026 at 5:50 am

    In addition to the differences you cite, and the library differences that
    Steve Jessop mentions,

    char* p1;
    char const* const* p2 = &p1;
    

    is legal in C++, but not in C. Historically, this is because C
    originally allowed:

    char* p1;
    char const** p2 = &p1;
    

    Shortly before the standard was adopted, someone realized that this
    punched a hole in const safety (since *p2 can now be assigned a
    char const*, which results in p1 being assigned a char const*); with
    no real time to analyse the problem in depth, the C committee banned any
    additional const other than top level const. (I.e. &p1 can be
    assigned to a char ** or a char **const, but not to a char const**
    nor a char const* const*.) The C++ committee did the further
    analysis, realized that the problem was only present when a const
    level was followed by a non-const level, and worked out the necessary
    wording. (See §4.4/4 in the standard.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that X & const x is redundant. It is not ok! But
Possible Duplicate: uninitialized const I understand that a const object needs to initialized. So
I understand that the correct way to declare a return type const is to
I'm trying to understand better how does const-correctness work and more specifically, when dealing
I understand that a const pointer can be declared a couple ways: const int
According to the following program, I can understand that, const keyword at a front
I understand that when I declare a member function as const I actually say
I don't understand why the below code does not build: bool AguiRectangle::pointInside(const AguiPoint &p
I did not understand really well how Predicate works, then my question could be
I understand that one benefit of having static member functions is not having to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.