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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:13:55+00:00 2026-05-27T09:13:55+00:00

For some reason I want to assign value to the double pointer in struct

  • 0

For some reason I want to assign value to the double pointer in struct member. I have structure that have 3 member’s first is int, second is pointer to that int, and third is double pointer, which point to second member (to pointer). That third member don’t know how to define as well. Here is source:

#include <iostream.h>

typedef struct {
    int a;
    int *b;
    int **c;
} st;

st st1, *st2 = &st1;

void main(){
// first define a member  
    st1.a = 200;
// second assign b pointer member to a
    st2->b = &st1.a;
// third assign c pointer member to b (but that don't work)
    *(st2)->c = st2->b;
}

OS: win 7, 64, c++ (c++ Builder 2010)

  • 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-27T09:13:55+00:00Added an answer on May 27, 2026 at 9:13 am
    typedef struct {
        int a;
        int *b;
        int **c;
    } st;
    
    st mySt;
    
    void main() {
        mySt.a = 200;
        mySt.b = &mySt.a;
        mySt.c = &mySt.b;
    }
    

    With the last assignment, you get the address of field b, which is a pointer, so it is the address of a pointer, then field c is correctly initialized as a pointer to a pointer.

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

Sidebar

Related Questions

I have some XML that looks like this: <abc x={></abc> I want to force
Some background: I have an database that I want to use linq-to-sql to update
I have derived a class BitmapDrawable in android for some reason but I want
My server for some reason displays .AIR file inside the browser, but I want
I want to check if the day is Sunday, but for some reason I
I need some advice. I have a web page and want to extend it's
For some reason my universal app suddenly does not want to launch in fullscreen
I have some models and I want to generate a multi-selection form from this
for some reason jGrowl does not want to work on my IIS 5 (live)
For some reason this isn't working? I want to fill the ul#list with some

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.