C ThePROGRAM Hello
REAL a(2,2)
C a = (/1.0,2.0,3.0,4.0/) instead try :
DATA A /1.0,2.0,3.0,4.0/
CALL Test(a)
print*,a(1,1)
C CONTAINS
END
SUBROUTINE Test(a)
REAL a(2,2)
a(1,1)=a(1,1)+9.0
RETURN
END
The subroutine can be compiled as a separate program and linked to the...
The array variable may be equivalenced to a matrix, the first dimension of which is set to N * M. Example :
DIMENSION A(10000) , B(100,100)
EQUIVALENCE (A , B )
CHARACTER FILENAME * 100 , NUMBER * 3
........
DO 50 IFILE = 1 , 100
WRITE(NUMBER,'(I3)') IFILE
FILENAME = NUMBER//other...
Check the registry settings
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
and [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
If there is a value named HideClock with data = 1, change it to 0.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.