◄Up► ◄Contents► ◄Index► ◄Back► ─────C/C++ Language───────────────────────────────────────────────────────── Pragma: title, subtitle Syntax: #pragma title( "titlename" ) #pragma subtitle( "subtitlename" ) Summary: Specifies a title or subtitle for the source listing. See also: linesize, page, pagesize, skip The parameter is a string literal containing the title or subtitle for subsequent pages in the source listing. The title appears in the upper left corner of each page of the listing. The subtitle appears below the title on each page. If you supply a null string ("") as the <titlename> parameter, title removes any title that was previously set. The <titlename> parameter can be a macro that expands to a string literal, and you can concatenate such macros with string literals in any combination. The following statements set a title and subtitle: #pragma title( "File I/O Module" ) #pragma subtitle( "Error handler" ) -♦-