Turbo C++ - Compiler Options - Nested Comments
Nested comments are often used with Turbo C++. Souce code using nested comments can not be compiled with this option disabled.
The following is a sample nested comment code.
/****
int a;
int b;
/****
for(int i = 0; i < 10; i++)
;
****/
****/
You can enable and disable this option by Options Menu under Compiler and then Source.
|