Previous Page | Next Page

The FCMP Procedure

STRUCT Statement


Declares (creates) structure types that are defined in C-Language packages.
STRUCT structure-name variable;

Arguments

structure-name

specifies the name of a structure that is defined in a C-language package and declared in PROC FCMP.

variable

specifies the variable that you want to declare as this structure type.


Examples

The following is an example of the STRUCT statement.

struct DATESTR matdate;
matdate.month = 3;
matdate.day = 22;
matdate.year = 2009;

Previous Page | Next Page | Top of Page