Every now and then I'll encounter a question or answer like the following.
what exactly r u trying to do with dis problem??? dude, here u r trying to decrement the value of a variable..a variable whose value will never reach the condition (i<20) u have provided... hence it will keep on printing '-'until what jamie wong specified ie i= -2^31..it will bebome +ve... i just tried this program....
include int main() { int i; int n = 20; for( i = 0; i < n; i-- ) printf("-"); return 0; } acording to the question u asked,
i should b incremented, ie i++ instead of i--...
@jamie wong: thanx man..learnt a new thing about tht a wraparound....
I usually just ignore it, but this time I decided to edit it. Does everybody agree that things like this should be edited to use real English grammar instead of text-message-speak? Or is it better to leave them as is?
Also, there were a couple of things in there I couldn't comprehend, like "+ve" and "learnt a new thing about tht a wraparound". Should I just leave those unedited?

