Function In Pascal

[Solved] Function In Pascal | Pascal - Code Explorer | yomemimo.com
Question : function in pascal

Answered by : bewildered-bat-q36pl41hi157

function Addition(a, b : integer) : integer;
begin
result := a + b
end;
//Addition(2, 5) is equal to 7

Source : | Last Update : Wed, 28 Apr 21

Answers related to function in pascal

Code Explorer Popular Question For Pascal