I was about running a big program. I figured out that it is better to learn the basics with simple test codes, before running the main program.
I find a simple code regarding the Write command from Intel help site. I am modifying little by little to reach my desired level. Code is as follows:
! write to file
open(1,FILE='test.dat')
write (1, '(A20)') namedef
! write with FORMAT statement
WRITE (1, 10) (n, SQRT(FLOAT(n)), FLOAT(n)**(1.0/3.0), n = 1, 100)
10 FORMAT (I5, F8.4, F8.5)
! colse(1)
! read (*,*)
stop
end
It gives following error message:
'Console2.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
What is PDB file and how can I solve this issue?


