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
0
Answer:
1. Name of the function
Similar questions