Advertisements
Advertisements
प्रश्न
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
A statement that invokes the function recursively?
एका वाक्यात उत्तर
Advertisements
उत्तर
gcd b(a mod b) [when b < > 0]
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
