Re: [algogeeks] atoi()

2011-07-23 Thread Gaurav Popli
and also ignore starting spaces if dr is any... On Sun, Jul 24, 2011 at 12:55 AM, hary rathor wrote: > int number=0; > read linearly > > > > if(ch=='-'||ch=='+') > number=-1; > > ch=str[i]; > chack every char is > > if(ch>'0'&&ch<'9') then > number =number *10+ch-'0'; > > > -- > You received this

Re: [algogeeks] atoi()

2011-07-23 Thread hary rathor
int number=0; read linearly if(ch=='-'||ch=='+') number=-1; ch=str[i]; chack every char is if(ch>'0'&&ch<'9') then number =number *10+ch-'0'; -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@

[algogeeks] atoi()

2011-07-23 Thread rShetty
Give an algorithm to implement an atoi() function ? -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegr