Logo

Programming-Idioms

History of Idiom 55 > diff from v60 to v61

Edit summary for version 61 by tr:
[Pascal] ddd

Version 60

2018-01-20, 12:08:24

Version 61

2018-01-20, 12:09:28

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Imports
SysUtils
Imports
SysUtils
Code
var
  _s: String;
  _i: Integer;
begin
  _s := IntToStr(_i);
end.
Code
procedure vetzer(var a:vettore;r:integer);
            var j:integer;
            begin
            for j:=1 to r do
            a[j]:=0;
            end;