Monday, December 10, 2007

How to work with string by example

How to work with string by example

To work with string by example

Example:

program Welcome;

uses

Wincrt;

var

a:String;

begin

Writeln('Enter the you name: ');

Readln(a);

Writeln('Name: ',a);

end.

Output:

No comments: