

InterviewSolution
Saved Bookmarks
1. |
output of this program public static int floating(int x){ return x*floating(x-1); } public static void main(String[] args){ floating(10); } |
Answer» | |