volume_mute

Fortran Implicit none

publish date2022/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

not implicitly declare any variables
implicitly declare any variables not explicitly declared

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


Quizzes you can take where this question appears