Article ID: 105932
Article Last Modified on 10/2/2003
C Compile options needed: none
character*40 c1,c2
c1 = 'abcd'
c2 = 'efgh'
k = 0
do i=1,500000
if(c1//c2 .eq. 'Never') k = k + 1
end do
end
The code above will run very slowly, and eventually generate:
C Compile options needed: none
character fmtout*20,label(1,3)*(9)
double precision value
data (label(1,j),j=1,3)/' Label',' Output',' Test'/
data value/3.14159/
fmtout='f10.3'
write(6,'(3a,''='','//fmtout//')')(label(1,j),j=1,3),value
end
The above code on execution will generate:
The code does run to completion because this type of DOS-extender error
is not fatal.
Additional query words: 1.00 buglist1.00 fixlist1.00a
Keywords: kbbug kbfix KB105932