My find-biggest-number Recursive function returns a discremented value
I have a problem in this recursive function that basically takes two numbers and returns the biggest one of them without using comparison (> || < ) operators, thing is, it returns dicremented values even though I held the starting values in a variable. Here’s my code: #include <stdio.h> int WhoBig(int A, int B) {… Read More My find-biggest-number Recursive function returns a discremented value