Group: comp.lang.fortran · Group Profile · Search for wise ones in comp.lang.fortran
Author: Ken Plotkin
Date: Jan 19, 2008 12:52
On Sat, 19 Jan 2008 12:10:39 -0600, "Lynn McGuire" <lmc@winsim.com> wrote: Are character*4 and integer*4 the same thing, storage wise ? [snip] The program is crashing at line 5. What am I doing wrong here ? Assuming you're on a 32 bit machine with 8 bit bytes, etc., you could do the following: integer istar character*4 istar equivalence (istar,cstar) call sub1 ...
|