You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If they are intent(in) then there is no danger of scribbling over some other memory by writing back to the character array with data bigger than the array. intent(out) makes little sense and is hopefully not allowed by compilers. intent(inout) is potentially dangerous, In summary, intent(in) only is allowed.
The text was updated successfully, but these errors were encountered:
Automatic sized arrays for characters can be used in Fortran, especially for subroutine arguments.
If they are intent(in) then there is no danger of scribbling over some other memory by writing back to the character array with data bigger than the array. intent(out) makes little sense and is hopefully not allowed by compilers. intent(inout) is potentially dangerous, In summary, intent(in) only is allowed.
The text was updated successfully, but these errors were encountered: