Suppose date is 05sep2005; i want the output like 05sep2005:00:00:00 ; how it will come?

Submitted by: Administrator
data test_date;
input date;
informat date datetime18;
cards;
05sep2005:00:00:00
run;
proc print data=test_date;
format date datetime18.;
run;
Submitted by: Administrator

Read Online SAS (Statistical Analysis System) Job Interview Questions And Answers