Int main ( )
(
Int x,
x = 10, 20, 30
Print f ('%d' x);
Return 0;
)
Answers
Answered by
0
Answer:
Infinite loop
Description : There is no condition in the main() to stop the recursive calling of the main() hence it will be called infinite no of times.
Similar questions