Re: Hello World

1998-04-15 Thread Michael Xie
Title: Re: Hello World a.out is the executable cc created if you did not specify the executable name in your cc command. Type a.out will run your program. -Original Message-From: Ed Jaeger <[EMAIL PROTECTED]>To: RedHat List <[EMAIL PROTECTED]>Date:

Re: Hello World

1998-04-15 Thread George Toft
> > ps. does anyone know a good IDE for redhat linux ? > Look at xwpe - X Window Programming Environment. George -- MSID:04091998 -- Microsoft Independence Day No MS Windows, No MS Office, No MS Crashes. Linux + StarOffice = Unbeatable Combination -- PLEASE read the Red Hat FAQ, Tips, Er

Re: Hello World

1998-04-15 Thread Drachen
1998, Michael S. Dunsavage wrote: > Date: Wed, 15 Apr 1998 15:47:34 -0700 > From: "Michael S. Dunsavage" <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: Hello World > Resent-Date: 15 Apr 1998 19:41:40 - > Resent-From: [EM

Re: Hello World

1998-04-15 Thread Ed Jaeger
Title: Re: Hello World Why go through all this work? get hello-3.6b5-glibc.i386.rpm from contrib. Mostly bug free, with full documentation. Ed Jaeger, CFO, Bohlender Graebener Corporation [EMAIL PROTECTED] http://www.bgcorp.com -- >From: "Michael" <[EMAIL PROTECTE

Re: Hello World

1998-04-15 Thread Michael S. Dunsavage
That's cool.i didn't know that...thanx for the correction. [EMAIL PROTECTED] wrote: > On Wed, Apr 15, 1998 at 03:47:34PM -0700, Michael S. Dunsavage wrote: > > > don't froget to chmod a+x myprog b4 ./myprog > > If they are using gcc, they shouldn't have to do this. "cc -o myprog > myprog.c

Re: Hello World

1998-04-15 Thread bsc
On Wed, Apr 15, 1998 at 03:47:34PM -0700, Michael S. Dunsavage wrote: > don't froget to chmod a+x myprog b4 ./myprog If they are using gcc, they shouldn't have to do this. "cc -o myprog myprog.c", outputs an executable with the proper permissions already set. Blair. --- end message --- __

Re: Hello World

1998-04-15 Thread Michael S. Dunsavage
g The World, One Business At A Time.. > By Caring About A Customers Success" > [EMAIL PROTECTED] Spam Patrol > > On Wed, 15 Apr 1998, Michael wrote: > > > Date: Wed, 15 Apr 1998 18:24:29 +0200 > > From: Michael <[EMAIL PROTECTED]> > > Reply-To: [EMAIL

Re: Hello World

1998-04-15 Thread Drachen
hael wrote: > Date: Wed, 15 Apr 1998 18:24:29 +0200 > From: Michael <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Hello World > Resent-Date: 15 Apr 1998 16:36:10 - > Resent-From: [EMAIL PROTECTED] > Resent-cc: recipient list no

Re: Hello World

1998-04-15 Thread Matthew Smith
a.out is the default executable that is generated by cc. You can change it by cc -o myprog myprog.c mod1.c mod2.obj will compile to myproj from the myproj.c, mod1.c and mod2.obj. Typically you have a file called hello.c with main() { printf("hello world\n"); } then use cc -o hel

Hello World

1998-04-15 Thread Michael
Hi all ! Sorry if this is off-topic I have just made my very first c-program, it's the world famous "Hello World" and I'm now stuck with a file called a.out The book I am reading doesn't tell me exactly what to do with this file, only that i shall do this: cc myp