Practical use of extra braces in C

前端 未结 4 636
时光取名叫无心
时光取名叫无心 2021-01-07 11:20

I know {} are used to separate entities such as functions, classes and conditional branching, but what other use would they have here?

#import &         


        
4条回答
  •  渐次进展
    2021-01-07 11:50

    That syntax (three curly braces in a row) doesn't mean anything special in standard C. The author of such code might use it to indicate something about the code inside, like that it's just there for debugging.

提交回复
热议问题