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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:00:09+00:00 2026-05-17T21:00:09+00:00

As of what I know about ‘&’ operator, it returns the base address of

  • 0

As of what I know about ‘&’ operator, it returns the base address of the operand in memory.

Let us imagine the following scenario (as on my machine):

  • sizeof(int) = 4 bytes
  • sizeof(float) = 4 bytes
  • sizeof(char) = 1 byte

Now, if I write something like this:

void main() {
 int i = 5411;
 int *ip = &i;
 char *c = &i;

 printf("%d",*ip);
 printf("%c",*c);
}

The first printf() should give me 5411. Talking about the second printf(), the base address of i contains 10101001 (higher order 8 bits = 1 byte for char type pointer).
Hence *c should give me 169, which when converted to %c is an invalid character.

But the compiler is giving me ‘#’ or some other valid output. Why is it so ? Any inputs ?

EDIT (taken from the author’s comment on one of the answers):

That was just a dummy case, since I was away from the actual machine.

The actual case is i = 5411

  • 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-17T21:00:09+00:00Added an answer on May 17, 2026 at 9:00 pm

    You seems to have trouble understanding how integers are stored in memory. Take 5411 as example.

    5411 = 1010100100011
    

    this number 13 binary digits has however, since an int is 32-bit, it must be pad to 32 digits

    5411 = 00000000 00000000 00010101 00100011
    

    On a little endian machine (x86, ARM by default), the least significant bytes are stored in the front, so in the memory:

    00100011   00010101    00000000    00000000
    ^
    c          c + 1       c + 2       c + 3
    ip
    

    Therefore, *c should return 00100011 i.e. 35 ('#').

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

Sidebar

Related Questions

I know about the double margin bug, but this is different.. the scenario is
I know about Object#tap , which takes a value and returns that value. But
I know about the option to set the internal memory ini_set(memory_limit,30M); But I wanted
I know about the difference between the base/active SDKs and the deployment target. I
I know about the hash use of the => operator, like this $ cat
I know about Application.Exit() but what if I'm not in a windows forms application
I know about the HIG (which is quite handy!), but what programming practices do
I know about SortedSet , but in my case I need something that implements
I know about this question: Which (third-party) debug visualizers for Visual Studio 2005/2008 do
I know about code-behind files, but what is the best real-world way of Designers

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.