Subj : Re: C Programming HELP... To : borland.public.cpp.borlandcpp From : petersdaly Date : Tue Jun 22 2004 02:00 am "Jeremy Pham" wrote in message news:<40d7407e@newsgroups.borland.com>... > 1) I need to write a program that utilizes looping to print the numbers from 1 to 10 side-by-side on the same line with 3 spaces between each number; in the C programming language. > > I'm currently teaching myself C, and this excercise really takes the cake. Any tactics or program outlines would be excellent. > > 2) As for my software, I currently use Borland C++ 5.0 Development Suite, or so the CD says. Would it be worth it to purchase Borland C++Builder 6 Personal? Or should I continue programming with 5.0? > > Thanks for your ongoing support guys, > Jeremy Pham #include void main() { int i; for(i=1;i<=10;i++) { printf("%d ", i); } } pete .