Re: struct not being passed :/ HELP!!!!


[ Follow Ups ] [ Post Followup ] [ CS1704 Discussion WWWBoard ] [ FAQ ]

Posted by J on July 17, 2000 at 00:07:18:

In Reply to: struct not being passed :/ HELP!!!! posted by M? on July 16, 2000 at 23:47:09:

Is this how you have it set up?

Say you have a struct called SomeStructType.

In you're program you have the array of structs
SomeStructType Something[100].

void Function(SomeStructType Something[]); // prototype
...
//call the function
Function(Something);
...
//definition
void Function(SomeStructType Something[]) {

code...
}





Follow Ups:



Post a Followup

Name:
E-Mail:

Subject:

Comments:

Optional Link URL:
Link Title:
Optional Image URL:


[ Follow Ups ] [ Post Followup ] [ CS1704 Discussion WWWBoard ] [ FAQ ]