passing array of pointers of structure to function general body

Status
Not open for further replies.

iliya24

Member level 2
Joined
Dec 15, 2011
Messages
50
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Activity points
1,609
Hello.
I am trying to create a function that suppose to get an array of pointers that each one is pointing to struct.
Can u help me with the general body of function.
Thx.
 

Thx, sorry for not giving enough information.
My program is C Lagrange
 

Code:
struct SomeStr {
   // Members of the struct...
};

void someFunction(struct SomeStr** someStrPtr);

If you're using C++, you don't need the 'struct' keyword before 'SomeStr**'.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…