codee-com/open-catalog
Ver no GitHub[Fortran] check the length of internal file
Open
#101 aberto em 11 de set. de 2025
CFortrangood first issuehelp wanted
Métricas do repositório
- Stars
- (105 stars)
- Métricas de merge de PR
- (Métricas PR pendentes)
Description
With the following example, gfortran has runtime error:
program main
character(len=5) :: s
write(s, '(3I0)') [11, 22, 33]
print '(a)', s
end program main
since the written string is longer than string s.
It would be nice to have a check that will determine such situations (especially when runtime values are used).