Using pointers to struct members as args to functions


 
Thread Tools Search this Thread
Top Forums Programming Using pointers to struct members as args to functions
# 1  
Old 07-28-2011
Using pointers to struct members as args to functions

In a well-known book on the C language, there is an example of an efficient method for using a struct member as an argument to a function. (I'm a C noob, but I believe the correct terminology might be: use call-by-reference instead of call-by-value.) The function is printf.

Anyway, here's a similar example, to illustrate the technique:

Code:
struct a *pp;

struct a b;
b.1 = c; 
b.2 = cc; 
b.3 = ccc; 
b.4 = cccc; 
}

struct a b, *pp;

pp = &b;

printf("b.1 is %s\n",(*pp).b.1);

This is easy enough to understand.

But how do we do this with structure members that are themselves pointers or functions?

Let's say I have a struct that resembles the one below. And I want to print the value of lg.

Code:
const struct kelly {
const char *cindy;
const char *juliette;
void (*anna)(const char *);
void (*jennifer)(void);
void (*rachel)(void);
void (*lg)(int);
char *(*christine)(const char *, char *);
}

# 2  
Old 07-28-2011
Quote:
Originally Posted by uiop44
But how do we do this with structure members that are themselves pointers or functions?

Let's say I have a struct that resembles the one below. And I want to print the value of lg.

Code:
const struct kelly {
const char *cindy;
const char *juliette;
void (*anna)(const char *);
void (*jennifer)(void);
void (*rachel)(void);
void (*lg)(int);
char *(*christine)(const char *, char *);
}

Just learn to keep in mind when you're using a pointer as a value and when you're using the value it points to. To print the value of lg, use:

Code:
/* `const' is useless here! */
struct kelly {
    /* ... */
    void (*lg)(int);
};

struct kelly kelly_smith;
printf("lg of kelly_smith = %p\n", kelly_smith.lg);


Edit: Unless kelly_smith is declared as a pointer, in which case use:

Code:
struct kelly *kelly_smith;
printf("lg of kelly_smith = %p\n", kelly_smith->lg);

/* Or, equivalently... */
printf("lg of kelly_smith = %p\n", (*kelly_smith).lg);


Last edited by JohnGraham; 07-28-2011 at 08:05 AM..
# 3  
Old 07-28-2011
Quote:
Originally Posted by uiop44
But how do we do this with structure members that are themselves pointers or functions?

Let's say I have a struct that resembles the one below. And I want to print the value of lg.

Code:
const struct kelly {
const char *cindy;
const char *juliette;
void (*anna)(const char *);
void (*jennifer)(void);
void (*rachel)(void);
void (*lg)(int);
char *(*christine)(const char *, char *);
}

Struct member lg is a pointer to a function that takes an int and returns void...so i am not sure what you mean when you want to print its value. Value in lg will be address of the function it is pointing to and dereferencing it *lg is the same thing as calling that function..kind of like
Code:
void f(int);
int i;
struct kelly k;
k.lg=f;
printf("value in lg is %u\n", lg);   // which is the address of function f
*lg;   // same as calling f(i)

# 4  
Old 07-28-2011
Quote:
Originally Posted by JohnGraham

Code:
/* `const' is useless here! */
struct kelly {
    /* ... */
    void (*lg)(int);
};

JohnGraham: Would const be useful if the struct was as follows?

Code:
const struct kelly {
/* ... */
void (*lg)(int);
} friends[] = {
/* ... */
};

Shamrock: Many thanks.

The "kelly" struct is based on real code that works well, but I (sloppily) took it out of a reasonably complex context, where the function being called by dereferencing "lg" varies based on the program name, whether input is from stdin/file, the command line arguments, sanity checks, etc.

To understand this code, there's a fair amount of indirection to resolve. The reward if I can figure it out is that it's a workable example of how to parse an above average number of command line variations.
# 5  
Old 07-28-2011
Quote:
Originally Posted by uiop44
JohnGraham: Would const be useful if the struct was as follows?

Code:
const struct kelly {
/* ... */
void (*lg)(int);
} friends[] = {
/* ... */
};

Yes, (assuming you want all the elements of your array to be const) since that's qualifying the array. It seemed like you wanted to make a const type (which you could do with a typedef).
# 6  
Old 07-28-2011
JG: Would you believe I also omitted a typdef that did just that? For the kelly example, I took the struct out of a context where I still don't fully understand the context. Hence the omissions.

Cheers for the helpful insights.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Store args passed in array but not the first 2 args

Store args passed in array but not the first 2 args. # bash declare -a arr=("$@") s=$(IFS=, eval 'echo "${arr}"') echo "$s" output: sh array.sh 1 2 3 4 5 6 1,2,3,4,5,6 Desired output: sh array.sh 1 2 3 4 5 6 3,4,5,6 (2 Replies)
Discussion started by: iaav
2 Replies

2. Programming

Dynamically enumerating the members of a C++ struct

In C++ there is a struct with the following structure: typedef struct myStruct { string s_date; float fA; float fB; float fC; ..... float fZ; } myData; After some computations on the values of the struct members are inserted into a database table: myData... (4 Replies)
Discussion started by: figaro
4 Replies

3. Programming

Storing C++-struct in file - problem when adding new item in struct

Hi, I have received an application that stores some properties in a file. The existing struct looks like this: struct TData { UINT uSizeIncludingStrings; // copy of Telnet data struct UINT uSize; // basic properties: TCHAR szHost; //defined in Sshconfig UINT iPortNr; TCHAR... (2 Replies)
Discussion started by: Powerponken
2 Replies

4. Programming

Passing an instance of struct to functions in other src files

I am trying to work out the best syntax for a relatively simple operation. The goal is to declare an instance of a struct and pass it around to be populated and have the data manipulated. There is an extra wrinkle in that the functions are in different src files. The main is simple, #include... (5 Replies)
Discussion started by: LMHmedchem
5 Replies

5. Homework & Coursework Questions

Passing pointers to struct

Hi, i'm trying to copy a struct into a binary file using the unix instruction write, so i declare and fill the struct "superbloque" in one function "initSB" and then i pass the pointer to another function called bwrite (for block write) which calls write. The problem is that i call the function... (2 Replies)
Discussion started by: ignatius3
2 Replies

6. UNIX for Dummies Questions & Answers

How to access a struct within a struct?

Can someone tell me how to do this? Just a thought that entered my mind when learning about structs. First thought was: struct one { struct two; } struct two { three; } one->two->three would this be how you would access "three"? (1 Reply)
Discussion started by: unbelievable21
1 Replies

7. Programming

functions that manipulate void pointers

I have two or more linked lists that have the same names for their "next". For example, struct server_t { sockaddr_in * sin; server_t * next_; } struct player_t { char name; player_t * next_; } How can I get a function to take in either type and manipulate the pointers? I... (3 Replies)
Discussion started by: pyramation
3 Replies

8. Homework & Coursework Questions

C++ struct pointers & functions

Hi All, My latest assignment (practice not coursework!) is to write prototype interactive exam/test console application. I've used structs to store the question information (not sure if this was the best way to do it?) and I have the following code that outputs each question and it's possible... (0 Replies)
Discussion started by: pondlife
0 Replies

9. Programming

Pointer to a struct (with pointers) *** glibc detected *** double free

I am using a structure defined as follows struct gene_square { double *x; double *y; };I have class, with a member function which is a pointer of this type: gene_square* m_Genes;I am allocating memory in the constructors like this: m_Genes = new gene_square; for (ii=0;... (1 Reply)
Discussion started by: jatoo
1 Replies
Login or Register to Ask a Question