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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:06:35+00:00 2026-05-31T12:06:35+00:00

I have two programs, Program A is like this, int main(int argc, char** argv)

  • 0

I have two programs,

Program A is like this,

int main(int argc, char** argv) {

    char* s = "hello";

    printf(s);

    return (EXIT_SUCCESS);
}

The base address of s is 0x80484e0 “hello”, Now I have Program B, as below

int main(int argc, char** argv) {

    void* p = (void*)0x80484e0;

    char* c = (char*)p;

    while(*c)
    {
        printf("%c",*c);
        c++;
    }

    return (EXIT_SUCCESS);
}

In program B ‘p’ is pointing to the same base address as ‘s’ in Program B but the contents are not same.

Even though ‘p’ and ‘s’ are having same base address their contents are not same, is it because they are running as different programs in different address space?

  • 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-31T12:06:36+00:00Added an answer on May 31, 2026 at 12:06 pm

    In program B ‘p’ is pointing to the same base address as ‘s’ in
    Program B but the contents are not same.

    That’s the magic of virtual addresses and separate address spaces. You need to look into “shared memory” for your platform.

    Addresses used by a program are virtual. They’re not the same as the physical address in RAM. The kernel does some nice (nasty) stuff with the help of the MMU and a page table and hides this from the process.

    So for example on a 32b system a process thinks it’s the sole user of the memory – it can use addresses from 0 to 0xffffffff – with certain restrictions.

    If you happen to be on a POSIX system, you can look into mmap and shm_open.

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

Sidebar

Related Questions

I have the code like this : #include <stdio.h> main() { int c; c
I have a confusion related to this program. #include <stdio.h> int main(void) { int
I would like a batch file to launch two separate programs then have the
I have a program that generates/'rolls' two dice. I would like to output these
I have two programs: one CLI program, and one GUI. The GUI is a
I've got a table recording views of programs. Each program can have two different
I have the following two programs: long startTime = System.currentTimeMillis(); for (int i =
I have two programs, Writer and Reader. I have a FIFO from Writer to
I have two (UNIX) programs A and B that read and write from stdin/stdout.
I have two begininer programs, both using the 'while' function, one works correctly, and

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.