--- In c-prog@yahoogroups.com, Uday Oberio <uday_obe...@...> wrote: Re: urgent help please
Sorry Uday, but printing the first character of each word in a string is not so critical that 12,000+ members of C-Prog have to drop what they're doing and lend you a hand! That you have an assignment due does not mean it is urgent for us. Your subject line should reflect the nature of your post, not that you have one. > In C programming i want to solve one programm of string that > is Enter String is C Programming Language Output is C P L. > means output is first letter of every word. > how it can be possible .. please help me Where is your attempt? What is your algorithm so far? As a start, try implementing something like... 1) skip whitespace 2) if end of string, finish 3) print letter 4) skip non whitespace 5) goto 1) Elsethread: > hello please send me the excet code... That is coming close to being banned. We are not here to solve people's homework and you are showing nothing but contempt and disrespect insisting on code when you have yet to produce a single line yourself. I suggest you make an attempt at implementing the above algorithm yourself before proceding further. If you're struggling, show us what you have, not matter how bad. Demonstrating that you're willing to try and learn will go a long way towards making people help you. Otherwise, if failing one assignment is the shock that makes you plan better in the future, then maybe it's what you need, even if it isn't what you want right now. -- Peter Nilsson [C-Prog Moderator]