Declares (creates)
structure types that are defined in C-Language
packages.
STRUCT structure-name variable;
|
- 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.
The following is an example of the STRUCT statement.
struct DATESTR matdate;
matdate.month = 3;
matdate.day = 22;
matdate.year = 2009;
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.