volume_mute
Fortran Implicit none
publish date: 2022/09/02 02:38:00 GMT+10
volume_mute
Many Fortran programmers now include the declaration Implicit none in their programs. This declaration instructs the compiler to
Correct Answer
not implicitly declare any variables
Explanation
Fortran will implicitly declare variables that are not explicitly declared unless Implicit none is included.
Reference
Concepts of Programming languages, 10th ed
