Is it possible to include nested comments (/ * / * * / * /) in Visual C ++?
I can not find the switch if it is.
Nested comments are not allowed in the C ++ standard. Visual C ++ supports this standard.
Sorry, no nested comments.
I do not think it is possible using this style of quotation. The first "* /" always "closes" the quote.
I donโt think itโs possible, but if you want to โcommentโ on a piece of code that itself contains comments, you can always use a preprocessor,
#ifdef NOT_REQUIRED /** * foo */ void foo() { } #endif
Source: https://habr.com/ru/post/893387/More articles:Why doesn't the T-SQL statement "LIKE" evaluate this expression as I think? - syntaxFindFirstFile and Junctions - cWeb Application API Versions - ruby โโ| fooobar.comNested comments in C ++ - c ++Drawing a curve through the set of N points, where N> 2 - javascriptHow to export a report to a single SINGLE html file? - htmlC # Changing cursor / cursor position? - c #cannot be dropped on [B]; The same context (default); Various Temp Files - asp.netHow do you set the coordinates of access points on a Windows cursor generated from an icon file? - winapiCalculation of the average value in tables using the formulas [R] - rAll Articles