I want to get clarified about the compiler limits of icc 19.0.
What I specifically want to get informed from the compiler limits is "Nesting levels of compound statements, iteration control structures, and selection control structures" in ICC.
In MSVC 2019, it is specified that "generally 100-110" is a recommended upper bound.
In ISO C++11 standard, it says "256" as a minimal upper bound.
There are compiler limits for MSVC and Intel Fortran Compiler specifications available at :
1. MSVC: https://docs.microsoft.com/ko-kr/cpp/cpp/compiler-limits?view=vs-2019
2. Intel Fortran Compiler: https://software.intel.com/en-us/fortran-compiler-developer-guide-and-reference-compiler-limits
Likewise, is there any specification for Intel C++ Compiler?
Otherwise, does the ICC conforms to the ISO C++98 standard as described in the website?
Thank you.