CHARACTER(LEN=4) :: A = "abcdef", B = "ghik", C = "opq", D = "xy"What is the result of each of the following Fortran 90 expressions?
CHARACTER(LEN=10) :: L, M, N
What is the result of the following?
What is the result of the following?
Suppose we wish to concatenate character variables A and B, and retrieve the substring (3:6). How would you carry out this operation? Can we use A // B(3:6) or (A // B)(3:6)? Are they correct? If they are, what would be the results, and which one can yield the desired result?