Quiz title : Macro variables
Question 1 of 10



%let mylib=sashelp;

%let mydsn=class;

 

proc print data=&mylib..&mydsn.;

run;

 

Which dataset is used as input by the print procedure when the above code is executed?