/* Day 1: Pgm 1.2 */ /* */ /* second problem -- old student information */ /* */ data work.b; * comment ; /* infile 'c:\temp\two.dat' */ * need to copy two.dat to the temp dir; /* I hope I'm pointing to the right /* directory */ * did I just make a mistake? ; filename two url 'http://www.stat.ncsu.edu/people/srasath/courses/ST445/two.dat'; infile two; input givname $ accntnam $ gender $ q1 $ q2 $ score feet inches birthday $ ; run ; * end of data step ; proc print data=b; title 'first exercise' ; run ;