Re: g++ file doesn't run

1997-03-24 Thread Kevin M. Bealer
Jeff Shilt wrote: Thanks for the help - it does compile with g++ instead of gcc, but the executable produced isn't d oing anything. Here's what i'm doing: //test.c #include iostream.h main(){ cout Hello there.; } The test file doesn't print out anything when I run it. Also, I was

Re: g++ file doesn't run

1997-03-23 Thread Benoit Goudreault-Emond
Thanks for the help - it does compile with g++ instead of gcc, but the executable produced isn't doing anything. Here's what i'm doing: //test.c #include iostream.h main(){ cout Hello there.; } The test file doesn't print out anything when I run it. Append a \n to your string. Or include

g++ file doesn't run

1997-03-22 Thread Jeff Shilt
Thanks for the help - it does compile with g++ instead of gcc, but the executable produced isn't doing anything. Here's what i'm doing: //test.c #include iostream.h main(){ cout Hello there.; } The test file doesn't print out anything when I run it. Also, I was wondering if this was a

Re: g++ file doesn't run

1997-03-22 Thread Perry Piplani
On Fri, 21 Mar 1997, Jeff Shilt wrote: //test.c The test file doesn't print out anything when I run it. try typing 'which test' and find out what program your really running then type 'man test' to see what it does. Then give your program a new name. Time flies like arrows, but fruit

Re: g++ file doesn't run

1997-03-22 Thread Hamish Moffatt
On Mar 03, 1997 at 10:23:30PM -0500, Jeff Shilt wrote: Thanks for the help - it does compile with g++ instead of gcc, but the executable produced isn't doing anything. Here's what i'm doing: //test.c #include iostream.h main(){ cout Hello there.; } The test file doesn't print

Re: g++ file doesn't run

1997-03-22 Thread Lars Hallberg
In message [EMAIL PROTECTED], Hamish Moffatt writes : On Mar 03, 1997 at 10:23:30PM -0500, Jeff Shilt wrote: Thanks for the help - it does compile with g++ instead of gcc, but the exec -utable produced isn't doing anything. Here's what i'm doing: //test.c #include iostream.h

Re: g++ file doesn't run

1997-03-22 Thread Matt Lawrence
At 10:23 PM 3/21/97 -0500, Jeff Shilt wrote: Thanks for the help - it does compile with g++ instead of gcc, but the executable produced isn't doing anything. Here's what i'm doing: //test.c Don't call it test. -- Matt