Fortran 90/95 Programming Manual

Download Fortran 90/95 Programming Manual, free training course under 67 pages by Tanja van Mourik.

Table of contents

  • Chapter 1 Getting started
  • Chapter 2 Types, Variables, Constants, Operators
  • Chapter 3 Control Constructs
  • Chapter 4 Procedures
  • Chapter 5 More on Arrays
  • Chapter 6 Modules
  • Chapter 7 More on I/O
  • Chapter 8 Pointers
  • Chapter 9 Numeric Precision
  • Chapter 10 Scope and Lifetime of Variables
  • Chapter 11 Debugging

Fortran 90 : Internal procedures

The three types of programs and subroutines can contain the CONTAINS statement. This statement separates the last executable statement from the program and marks the beginning of a collection of subroutines (subroutines or functions), called internal procedures. Unlike external routines, that is, those that are not located within a program or subroutine, these subroutines can only be used within the program that contains them. . In addition, these internal procedures have access to all the variables of the program that contains them (the host program), unless they include declarations of identifiers that bear the names of identifiers used in the host program.

These internal procedures allow on one side a better structuring of the tasks to be performed; on the other hand, sharing variables can be dangerous, since there is no way to prevent internal subroutines from modifying the contents of variables in the main program.

Variable declarations

An identifier allows to give a name to:

  • a variable,
  • a constant,
  • a subroutine (subroutine or function).

An identifier must meet the following requirements:

  • it is defined by a sequence of alphanumeric characters (non-accented letters, numbers, underscore),
  • his first character must be a letter,
  • its length is limited to 31 characters,
  • we do not distinguish between uppercase and lowercase letters.

As a result: neither blanks nor special characters in the identifiers.

Size : 279.259 Kb
File type : pdf
Downloads: 255
Created: 2018-05-21

Others Fortran Tutorials

Introduction to programming with Fortran 95

Introduction to Programming using Fortran 95/2003/2008

Getting started with Fortran language

Fortran 90 for Beginners

Programming in Fortran 95

Others related eBooks about Fortran 90/95 Programming Manual

100 Laravel Quick Tips

Download free course 100 Laravel Quick Tips, pdf file on 41 pages by Self-publishing3...

Python for Everybody: Exploring Data in Python 3

Python for Everybody is designed to introduce students to programming and software development through the lens of exploring data. You can think of the Python programming language as your tool to solve data problems that are b...

Getting started with React

This tutorial teaches you how to program with React, a complete PDF document on 139 pages created by StackOverFlow. This course aims to give a solid foundation to React.js by exploring all of its concepts and possibilities, to then facilitate the exploration of the vast ecosystem that revolves arou...

Spring MVC Framework

Download a free training document material about the Framework Spring MVC ,this pdf tutorial is a complet reference guide to Spring Framework features under 904 pages designated to all student level....

Using Perl 6

This book is primarily for people who want to learn Perl 6. It teaches the basics from a Perl 6 perspective, touching on variable interpolation, datastructure use, object construction, threads, closures, symbol tables, and other core features. It then introduces continuations, coroutines, binding (o...

Processing WSDL in Python

With this tutorial you will learn how to process WSDL in Python language (web services and Python) , free PDF cocument under 11 pages by Mike Olson and Uche Ogbuji ....

Struts Framework ,Overview Installation and Setup

Free training material course for Framework Struts ,this pdf tutorial will shows you an overview of this famous Java Framework ,how to install and use it ....

Microservices Best Practices for Java

Download free course Microservices Best Practices for Java, pdf file on 134 pages by Michael Hofmann, Erin Schnabel, Katherine Stanley....

Learning iOS eBook (PDF)

Download free IOS tutorial course material and training in PDF file 1131 pages....

Excel VBA Notes for Professionals

Download free course Excel VBA Notes for Professionals, pdf file on 127 pages by Stack Overflow Community....