data quote; infile datalines dlm=','; input x y$; datalines; 10,"100" ; run; What will be the output?
Reveal answer
Fill a bubble to check yourself
data quote; infile datalines dlm=','; input x y$; datalines; 10,"100" ; run; What will be the output?