void exampleFunction(int a, int b)
{
int c=sum(multiply(a,b),c);
}
While debugging this exampleFunction, is there a way i can check the return value of multiply(a,b) function at run time. I do not want to put any System.out.println statements. Suggest a way while debugging code in android studio.