Infinite recursion in C vs C++
ZEON256
2026-06-01
Low Level
Infinite recursion is UB in C++ because of something called foward-progress (which covers both loops and recursion) but in C the rule is only applied to loops
Infinite recursion is UB in C++ because of something called foward-progress (which covers both loops and recursion) but in C the rule is only applied to loops