I am beginner in FORTRAN programming, I ran the following simple code:
program ex1 write (,) 'Hello there' end program ex1
I had these error:
ERROR: The executable does not exist
96cb mov [ebp-0x7c],esi Compiling and linking file: hello_there.f95 Access violation: The instruction at address 004196c8 attempted to read from location 0b31f20c 00419426 loadDll(<ptr>char,int) [+02a2]
004028ed loadObject(<ptr>char) [+0291]
004259d9 loadCatenatedObject(<ptr>char) [+02ac]
00402c17 loadNamedObjectFile(<ptr>char) [+0143]
00420708 findDLL(<ptr>char) [+01b0]
004208d0 loadStandardDLLs(void) [+01b2] 0040766a parcelUpExe(void) [+0857] 0040c049 parseCommandLine(<ptr><ptr>char) [+03ab] eax=0b322c6b ebx=0b3225f4 ecx=0b32191c edx=00000000 esi=000005dc edi=0b31f208 ebp=0370eb08 esp=0370ea54 IOPL=0 ds=002b es=002b fs=0053 gs=002b cs=0023 ss=002b flgs=00010203 [CA OP NZ SN DN NV] 0360/7820 TSTK=7 [ ] 004196c8 mov esi,[edi+0x4] 0041
The 2nd example:
program Year implicit none !this is comment integer yrbirth, currentYr, age character :: name5 write(,) 'Enter ur name' read(,*) name
write(,) 'Enter ur age now' read(,) age
print*,'Enter ur current yera' read(,) currentYr
yrbirth = currentYr - age stop end program year
================= I had this same error: ERROR: The executable does not exist
ile: age_ex.f95 C:\Users\DAWAHNIGERIA\Documents\F95_code\age_ex.F95(3) : warning 242 - Variable YRBIRTH has been given a value but never used Access violation: The instruction at address 004196c8 attempted to read from location 0508f20c 00419426 loadDll(<ptr>char,int) [+02a2]
004028ed loadObject(<ptr>char) [+0291]
004259d9 loadCatenatedObject(<ptr>char) [+02ac]
00402c17 loadNamedObjectFile(<ptr>char) [+0143]
00420708 findDLL(<ptr>char) [+01b0]
004208d0 loadStandardDLLs(void) [+01b2]
0040766a parcelUpExe(void) [+0857]
0040c049 parseCommandLine(<ptr><ptr>char) [+03ab]
eax=05092c6b ebx=050925f4 ecx=0509191c edx=00000000 esi=000005dc edi=0508f208 ebp=0370eb08 esp=0370ea54 IOPL=0 ds=002b es=002b fs=0053 gs=002b cs=0023 ss=002b flgs=00010203 [CA OP NZ SN DN NV] 0360/7820 TSTK=7 [ ] 004196c8 mov esi,[edi+0x4]
004196cb mov [ebp-0x7c],esi
=======================================
Kindly help me out please!
[/b]