+ 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
1 Réponse
0
i tried that program to change to c++ but its not working for non recursive method