第1問

さて、ここに引数の数が間違っている以外に何の変哲もない Fortran プログラムがあります。

$ cat foo.f
      integer n
      n=1
      call foo(n)
      end

      subroutine foo(n,m)
      m=n
      end subroutine

ごく普通の Fortran コンパイラコンパイルします。

$ gfortran --version
GNU Fortran (GCC) 4.3.5
Copyright (C) 2008 Free Software Foundation, Inc.

GNU Fortran comes with NO WARRANTY, to the extent permitted by law.
You may redistribute copies of GNU Fortran
under the terms of the GNU General Public License.
For more information about these matters, see the file named COPYING

$ gfortran -Wall foo.f

何が起こるでしょうか。
答え:正常にコンパイルが終了する。