This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]