Computer Science, asked by anandsanthosh2005, 5 days ago

let rec gcd a b :=
if b <> 0 then gcd b (a mod b) else return a
i) Name of the function
ii) Identify the statement which tells it is a recursive function
iii) Statement which terminates the recursion

Answers

Answered by omkartawde2007
0

Answer:

1. Name of the function

Similar questions