Quiz title : Set - 001 - Part 08
Question 1 of 9
The following SAS program is submitted:;
%macro one (input);
%two
%put the value is &date;
%mend;
%macro two;
data _null_;
call symput('date','12SEP2008');
run
%mend;
%let date=31DEC2006;
%one(&date);
What is the result when the %PUT statement executes?