Re: newbie C programming question

2003-01-02 Thread Christopher Henderson
That did it - thnx! ~Christopher On Thu, 2003-01-02 at 02:38, Willem Brown wrote: > Christopher Henderson wrote: > > I'm trying to teach myself C and I'm having trouble compiling my first > > program. This is following the C Tutorial at > >

Re: newbie C programming question

2003-01-02 Thread Gordon Messmer
On Thu, 2003-01-02 at 00:18, Christopher Henderson wrote: > My first program, a simple "Hello World", is as follows > > #include < stdio.h> > > void main() > { > printf("\nHello World\n"); > } > > I go to a console and type gcc hello.c as stated in the tutorial and get > the following error

Re: newbie C programming question

2003-01-02 Thread Willem Brown
Christopher Henderson wrote: I'm trying to teach myself C and I'm having trouble compiling my first program. This is following the C Tutorial at . My first program, a simple "Hello World", is as follows #include <

newbie C programming question

2003-01-02 Thread Christopher Henderson
I'm trying to teach myself C and I'm having trouble compiling my first program. This is following the C Tutorial at . My first program, a simple "Hello World", is as follows #include < stdio.h> void main() { p