Day: September 10, 2020

1. Arithmetic Operations Arithmetic operations are denoted by following arithmetic operators: Addition + Subtraction – Multiplication * Division / Exponentiation ** Order of Precedence Operands of an arithmetic operation may be a numeric constant, numeric variable or an arithmetic expression in parentheses. Two operators cannot be written consecutively. Operations must be defined in a particular […]
In the earlier posts, we have provided the details on how to get started with FORTRAN77 and install a FORTRAN compiler with an editor. Knowledge of dimension and parameter statements leads us one step ahead. Dimension statement This statement declares the dimensions and rank of arrays in a program. For example, the code below is […]