Given the SAS data set PEPM.STUDENTS:
PERM.STUDENTS NAME AGE -
--------- ------ Alfred 14
Alice13 -
Barbara13 -
Carol14 -
The following SAS program is submitted:
libname perm SAS data library;
data students;
set perm.students;
file file specification;
put name $15. @5 age 2.;
run;
What is written to the output raw data file?
Kleinstone
3 years, 10 months ago