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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:47:54+00:00 2026-06-12T05:47:54+00:00

I understand that a register keyword will assign a register for computing the value

  • 0

I understand that a register keyword will assign a register for computing the value and a volatile keyword will read the value from the memory every time when we perform some computation on the variable and basically not optimize the code. So, if a variable is assigned both these keywords then, would it mean that it would essentially be volatile itself? I cannot understand the behavior by writing a sample code. Can anybody shed some light?

  • 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-12T05:47:56+00:00Added an answer on June 12, 2026 at 5:47 am

    In C, the register storage class behaves exactly as the auto storage class, except that the implementation is required (per 5.1.1.3) to issue a diagnostic if the program attempts to take or use the address of the object (6.5.3.2, 6.7.1). The use of register as an optimisation hint to the compiler is generally pointless, as a compiler smart enough to exploit the non-stored quality of the object is certainly smart enough to track which objects could be declared register; instead, it should be understood as a code quality check that the programmer is not inadvertently destroying optimisation opportunities by taking the address of the object.

    In other words, removing all instances of the register keyword from a valid program has no effect on the program’s semantics; it is similar in this regard to static_assert.

    The volatile type qualifier indicates that accesses to (reads from and writes to) the object are considered side effects and cannot be optimised away. For an object that does not exist in a defined location memory (i.e., one having the register storage class), this would be most useful in performance testing:

    start = time();
    for (multiple loops)
        register volatile int result = test_function();
    stop = time();
    elapsed = stop - start;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that we can set the various style attributes from code behind using
I understand that in CUDA's memory hierachy, we have things like shared memory, texture
I understand that jdbc involved these steps Import the packages, Register the JDBC driver,
After reading the answer here, I understand that, if I register a user control
I understand that: '\n' // literally the backslash character followed by the character for
I understand that JVM and CLR were designed as stack-based virtual machines. When JIT
I understand that the em measurement is a relative unit for font-size, relative to
I understand that this question may be subjective, this is why I need an
I understand that applications under the same domain name can talk to each other
I understand that storage history is something that is better to keep for vcs

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.