C251 User's Guide

Command Prompt

To invoke the C251 Compiler, enter C251 at the command prompt. You must include the name of the C source file to be compiled and any required control directives on the command line. The format for the command line is:

C251 sourcefiledirectives...〛
C251 @commandfile

Where

sourcefileIs the name of the source program you want to compile.
directivesAre directives that control the operation of the compiler. Refer to Directives for a detailed list of the available directives.
commandfileIs the name of a command input file that may contain the sourcefile and directives. A commandfile is commonly used when the compiler command line is complex or exceeds the limits of the Windows command prompt. The maximum size of the command input file is limited to 64KB.

The following command line example invokes the C251 Compiler, specifies the source file SAMPLE.C, and uses the DEBUG, CODE, and PREPRINT directives.

C251 SAMPLE.C DEBUG CODE PREPRINT

The C251 Compiler displays the following information upon successful compilation.

C251 COMPILATION COMPLETE.  0 WARNING(S),  0 ERROR(S)