Date: Mon, 22 Jun 2009 04:19:49 -0700
Reply-To: Kevin Y <kevin77711@YAHOO.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Kevin Y <kevin77711@YAHOO.COM>
Subject: Hex
Content-Type: text/plain; charset=iso-8859-1
Want to know why cohex=0011 (based on the ASCII table 00=(null) and 11=(device control 1)? Thanks!!
1 data _null_;
2 cc=17;
3 cchex=put(cc,hex4.);
4 put _all_;
5 run;
CC=17 CCHEX=0011 _ERROR_=0 _N_=1
|