int_to_string Function

function int_to_string(value) result(text)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: value

Return Value character(len=32)


Source Code

   function int_to_string(value) result(text)
      integer, intent(in) :: value
      character(len=32) :: text
      write(text,'(i0)') value
   end function int_to_string