alex


{ City }
< Country > india
* Profession *
User No # 51164
Total Questions Posted # 1
Total Answers Posted # 0

Total Answers Posted for My Questions # 1
Total Views for My Questions # 3322

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { alex }
Questions Answers Category Views Company eMail

Here's the programm code: int magic(int a, int b) { return b == 0 ? a : magic(b, a % b); } int main() { int a, b; scanf("%d%d", &a, &b); printf("%d\n", magic(a, b)); return 0; } on input stream we have integers 4, 45 What's the output integer? How many times will be initiated "magic" function?

1 C++ Code 3322




Answers / { alex }