Write a C/C++ program for Ackerman Function (Non Recursive Method) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Write a C/C++ program for Ackerman Function (Non Recursive Method)

A(m,n) = n+1 if m=0 = A(m-1,1) if n=0 = A(m-1, A(m,n-1)) otherwise Program should be non recursive method

19th Feb 2017, 6:31 AM
Swaroop E
Swaroop E - avatar
1 Answer
0
i tried that program to change to c++ but its not working for non recursive method
19th Feb 2017, 10:02 AM
Swaroop E
Swaroop E - avatar