FCMP Procedure
STRUCT Statement
Declares (creates) structure types that are defined
in C-Language packages.
Syntax
Required 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.
Example
The following is an
example of the STRUCT statement.
struct DATESTR matdate;
matdate.month = 3;
matdate.day = 22;
matdate.year = 2009;
Copyright © SAS Institute Inc. All rights reserved.