*/
Looking for work? Check out our jobs area.
*/

View \CHARDEMO.PAS

This is the second disk of the PASCAL TUTOR system. It has the

Submitted By: WEBMASTER
Rating: (Not rated) (Rate It)


(* Chapter 3 - Program 7 *)
program Char_Demonstration;

var Letter  : char;
    Number  : char;
    Dogfood : char;

begin
   Letter := 'P';
   Number := 'A';
   Dogfood := 'S';
   Write(Letter,Number,Dogfood);
   Letter := Number;             (* This is now the 'A' *)
   Number := 'L';
   Dogfood := 'C';
   Write(Dogfood,Letter,Number);
   Writeln;
end.

corner
© 1996-2008 CommunityHeaven LLC. All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
North American business development: Nicolai Wadstrom. Publisher: Lars Hagelin.