var variable pascal

Solutions on MaxInterview for var variable pascal by the best coders in the world

showing results for - "var variable pascal"
Barnaby
29 May 2017
1var
2	a : Character;
3(*Typically a single octet (one byte). This is an integer type.*)
4	i : Integer;
5(*The most natural size of integer for the machine.*)
6	r : Real;
7(*A single-precision floating point value.*)
8	b : Boolean;
9(*Specifies true or false logical values. This is also an integer type.*)
10	e : Enumerated;
11(*Specifies a user-defined list.*)
12	sb : Subrange;
13(*Represents variables whose values lie within a range.*)
14    s : String;
15(*Stores an array of characters.*)