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 8922387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:49:12+00:00 2026-06-15T06:49:12+00:00

I have a variable defined in one of my files, It may be manipulated

  • 0

I have a variable defined in one of my files, It may be manipulated by the code in the file itself, but it is always a constant value to any external file.

How do i declare the variable as constant without raising errors on assigning this variable a value inside the file it is defined in while allowing compiler to optimize it’s read as if it is a constant in those external units ?

  • 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-06-15T06:49:14+00:00Added an answer on June 15, 2026 at 6:49 am

    A rvalue can’t be modified. Use an accessor function to access it guarantees you only offer an rvalue, e.g.

    static int value;
    
    extern int getconst();
    
    int getconst() {
      return value;
    }
    

    This makes:

    getconst() = -1; // Compiler error
    

    Alternatively you can expose your value via a const pointer to a const int:

    #include <stdio.h>
    
    static int value = -1;
    
    extern const int * const public_non_modifiable;
    const int * const public_non_modifiable = &value;
    
    
    int main() {
      printf("%d\n", *public_non_modifiable); // fine
      *public_non_modifiable = 0; // compiler error
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this variable defined in my web.config file : <appSettings> <add key =version
I have to extract defined variable and function names from a js code passed
In Visual C++, one can find the header file where any name (variable or
I have a 2 modules (.c files) and one .h header file: file1.c: #include
This may seem weird but I have a problem in one of my programs
I have an variable obj defined as follows: {user: {username: AzureDiamond, password: hunter2}} I
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined.
I have defined a variable with an own type, say Dim point As DataPoint
I have a variable @products = Product.all defined inside new method in a controller.
I have a function, where if a variable is not defined, exit; is called,

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.