

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions on using compaq visual fortran for creating workspaces, projects, and source files. It covers the process of creating a workspace, a project within the workspace, and a source file within the project. The document also explains how to compile and debug the source code. This information is useful for students and developers who are new to compaq visual fortran and want to learn how to use it for developing fortran console applications.
Typology: Study notes
1 / 3
This page cannot be seen from the preview
Don't miss anything!


The Compaq Visual Fortran development environment has many similarities to the Microsoft Visual C++ development environment. The three main areas used when writing a program are the workspace , the project and the source file. A workspace is simply a container to easily organize projects. A project is a container to hold any number of source files. Typically, all the source files in a project are interrelated, often to produce a single executable program file. The hierarchy of areas, listed from highest to lowest, is the workspace, then the project and finally the source file. You can build many different kinds of projects with Visual Fortran. For our purposes only one, the console application, is of interest. A Fortran console application (.exe) is a character-based program that does not require screen graphics output. It looks similar to a program running on a UNIX workstation or a terminal connected to a mainframe computer. Fortran console projects operate in a single window, and let you interact with your program through normal read and write commands. Console applications are better suited to problems that require pure numerical processing rather than graphical output or a graphical user interface. This type of application is also more portable to other platforms than other types of application. Creating a Workspace
Creating Source Files