On Mon, Feb 23, 2004 at 10:22:18AM -0800, Muhammed sabir wrote:
> 
> i think u have to change "%s"  with "%,24s"
> time_t  *t ;
> > time(t);
> > printf("%,24s\r\n" ,ctime(t));

remove the coma after the %.

printf(%24s\r\n", ctime(t));

with regards
M.Balakrishna Pillai

Reply via email to