To work with char by example
Example:
program Welcome;
uses
Wincrt;
var
a:char;
begin
Writeln('Enter the you name: ');
Readln(a);
Writeln('Name: ',a);
end.
Output:
Post a Comment
No comments:
Post a Comment