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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T04:09:11+00:00 2026-06-02T04:09:11+00:00

What is the following code doing? int g[] = {9,8}; int (*j) = g;

  • 0

What is the following code doing?

int g[] = {9,8};
int (*j) = g;

From my understanding its creating a pointer to an array of 2 ints.
But then why does this work:

int x = j[0];

and this not work:

int x = (*j)[0];
  • 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-02T04:09:13+00:00Added an answer on June 2, 2026 at 4:09 am

    The parenthesis are superfluous in your example. The pointer doesn’t care whether there’s an array involved – it only knows that its pointing to an int

      int g[] = {9,8};
      int (*j) = g;
    

    could also be rewritten as

      int g[] = {9,8};
      int *j = g;
    

    which could also be rewritten as

      int g[] = {9,8};
      int *j = &g[0];
    

    a pointer-to-an-array would look like

      int g[] = {9,8};
      int (*j)[2] = &g;
    
      //Dereference 'j' and access array element zero
      int n = (*j)[0];
    

    There’s a good read on pointer declarations (and how to grok them) at this link here: http://www.codeproject.com/Articles/7042/How-to-interpret-complex-C-C-declarations

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

Sidebar

Related Questions

The following code is suppose to be doing this : - Displaying a string
From one thread I got the following code: int next_stuff(char **code){ ... len=read(file_desc,buffer+end_len,packet_size-end_len); if(len<=0)
I am trying to create a thread in the following code but the pointer
I have the following PHP code doing a very simple select into a table.
So I have the following code which is doing a setInterval until the iframe
I have the following code that's looping through files in a folder and doing
Doing an ajax get request works as expected using the following code: $.ajax({ type:
I'm doing a small app in Excel, and I have the following code when
I am doing the following in my code: _sound = new Sound(); _sound.addEventListener( SampleDataEvent.SAMPLE_DATA,
Following code produces a nested array as a result for keys containing three items:

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.