This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: ask g77
- From: pete at ltoi dot iap dot physik dot tu-darmstadt dot de
- To: tuxkid at softhome dot net
- Cc: gcc at gcc dot gnu dot org
- Date: Wed, 24 Sep 2003 17:24:43 +0200 (MEST)
- Subject: Re: ask g77
If you replace
WRITE(*,'(A,\)')'INPUT SISI:'
by
WRITE(*,'(A,$)')'INPUT SISI:'
it may give what you intend to code. Note: This is non-standard Fortran77.
Therefore it's non portable!
Next, the option -c will only give you an object file. Try
f77 -o progname tes1.for
instead.
Cheers,
Peter