vote up 0 vote down star

how do I read from an array into a user defined variable... in Fortran?

flag
1  
From what you post, very difficult to answer. Your question text is not Fortran. Suggest you edit your question and try again. – High-Performance Mark Oct 15 at 20:40

1 Answer

vote up 0 vote down

From the question title, you want to "read" an item from an array of 15-character items to a scaler of 15 characters? Obviously only one array element will fit into the scaler. This isn't a "read" as in I/O -- just a copy, which can be done with an "equal" sign. Or do I misunderstand the question?

program test

character (len=5), dimension (1:4) :: char_array = (/ "12345", "abcde", "qwert", "YUIOP" /)

character (len=5) :: char_scaler

char_scaler = char_array (2)

write (*, *) char_scaler

stop

end program test

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.