Could any of them explain .
data test;
length x 4;
x=1/10;
y=1/10;
put x=;
put y=;
run;
data _null_;
set test;
put x=;
put y=;
run;
The values of x when executed in both data steps behave different. I know this is because of the length statement which i have used.
But could you please explain me in detail as i am not able to .