Common Block

Noun · Development

Definitions

  1. A Fortran language construct that defines a named block of shared memory accessible by multiple program units, allowing subroutines to share data without explicit argument passing. Considered legacy practice, largely replaced by modules.

    In plain English: An old Fortran feature that lets different parts of a program share the same chunk of memory, like a shared whiteboard everyone can read and write on.

Related Terms