next up previous contents
Next: Operator Precedence Up: Intrinsic Character Operations Previous: Substrings   Contents

Concatenation

  character(len=*), parameter :: &
         state="michigan",  name="tech" 
  character(len=12) :: school 
  school = state // name
! produces "michigantech"



Adrian Sandu 2001-08-26