Computer Science, asked by zkarthiksriram8406, 7 months ago

Int main ( )
(
Int x,
x = 10, 20, 30
Print f ('%d' x);
Return 0;
)

Answers

Answered by Anonymous
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