Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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 Untitled.png
 

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top