Something like this.

stack<char *> S;
void function(char *s) {
           char *ptr=s;
           while(*ptr++ !=' ') {}
           *ptr = '\0';
            S.push(s);             // Will push the string till NULL into
the stack
            function(ptr+1);
}


// Pop from stack to get words

Karthik R


On Tue, Sep 13, 2011 at 2:50 PM, guna sekaran <vgun...@gmail.com> wrote:

> please write a code any one
>
> On Tue, Sep 13, 2011 at 2:06 PM, shady <sinv...@gmail.com> wrote:
> > search archives, already done
> >
> > On Tue, Sep 13, 2011 at 1:39 PM, Anshul Khandelwal
> > <anshul.dans1...@gmail.com> wrote:
> >>
> >> U can take command line argument in main
> >> main(int argc,char * argv[ ])
> >> { for(i=argc-1,i>=0;i--) printf("%s ",argv[i]);
> >> }
> >>
> >>
> >> On Tue, Sep 13, 2011 at 12:05 AM, hary rathor <harry.rat...@gmail.com>
> >> wrote:
> >>>
> >>> kapil : in your solution you are required extra O(n+n*sizeOf(int *))
> both
> >>> memory to create a link list that really costly
> >>>
> >>>
> >>> --
> >>> 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...@googlegroups.com.
> >>> For more options, visit this group at
> >>> http://groups.google.com/group/algogeeks?hl=en.
> >>
> >>
> >>
> >> --
> >> Regards
> >> ANSHUL KHANDELWAL
> >> Final year
> >> Computer Engineering
> >> NIT Jaipur
> >>
> >>
> >> --
> >> 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...@googlegroups.com.
> >> For more options, visit this group at
> >> http://groups.google.com/group/algogeeks?hl=en.
> >
> > --
> > 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...@googlegroups.com.
> > For more options, visit this group at
> > http://groups.google.com/group/algogeeks?hl=en.
> >
>
> --
> 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...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to