All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Reuben D. Budiardja" <techlist@pathfinder.phys.utk.edu>
To: linux-c-programming@vger.kernel.org
Subject: Passing pointer as member of struct to function
Date: Tue, 10 Jan 2006 09:05:08 -0500	[thread overview]
Message-ID: <200601100905.08338.techlist@pathfinder.phys.utk.edu> (raw)


Hello,
I have the following problem, which probably best explained if I give the 
sample code first:

testNuclei.c:
---------------------
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

typedef struct nucleiType
    {
    char nucleiName[5];
    int protonNumber; 
    int neutronNumber;
    } nucleiType;

typedef struct reaclibType
    {
    int reactionType;           
    nucleiType * leftNuclei[2]; 
    nucleiType * rightNuclei[2];
    double QValue;
    } reaclibType;

int setNuclei(nucleiType * nuclei);
char * getNucleiName(nucleiType * nuclei);

int main(int argc, char ** argv)
  {
  reaclibType reactionRates[100];
  nucleiType * myNuclei;
  
  /* Let's set the leftNuclei using the setNuclei function.  
     We want leftNuclei to point to a valid nuclei (which is 
     set in the function) */   
  setNuclei(reactionRates[1].leftNuclei[0]);
  
    /* Now let's see if the leftNuclei has been set */
  myNuclei = reactionRates[1].leftNuclei[0];
  printf("reactionRate leftNuclei: %s\n", myNuclei->nucleiName);

  return 0;
  }

/* Function to set the nuclei in the reaclibType */

int setNuclei(nucleiType * nuclei)
  {
  nucleiType * newNuclei;
  
   /* Create new nuclei 
    (in the real program this is defined elsewhere 
     and read from data file 
  */ 
  newNuclei = (nucleiType *) malloc(sizeof(nucleiType));
  strcpy(newNuclei->nucleiName, "sc32");
  newNuclei->protonNumber = 21; 
  newNuclei->neutronNumber = 11;
  
  // Now trying to set the passed nuclei to this newNuclei 
  nuclei = newNuclei;
  
  return 0;
  }
------------------------------------------------------------------------------------

As you can probably guess already, my problem is that I want to be able to set 
the leftNuclei[i], which is a member of a struct reaclibType in the main 
program through a function. When I run this program, the output that I get 
is:
$ ./a.out 
reactionRate leftNuclei: (null)

What I really want is to get the following output:

$ ./a.out 
reactionRate leftNuclei: sc32

Any help on this ? Am I confusing something ? Help would be greatly 
appreciated. Thanks in advance.
RDB
-- 
Reuben D. Budiardja

             reply	other threads:[~2006-01-10 14:05 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-01-10 14:05 Reuben D. Budiardja [this message]
  -- strict thread matches above, loose matches on Subject: below --
2006-01-10 14:38 Passing pointer as member of struct to function Mihai Dontu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200601100905.08338.techlist@pathfinder.phys.utk.edu \
    --to=techlist@pathfinder.phys.utk.edu \
    --cc=linux-c-programming@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.