版面书写R-1-2-6强制
禁止嵌套注释
嵌套注释
test.c
1void foo(void)2{3 /*4 comment ...5 /*禁止嵌套注释 [gjb8114-r-1-2-6]6 nested comment ...7 */8 */9}
非嵌套注释
test.c
1void foo(void)2{3 /*4 comment ...5 */6 /*7 comment ...8 */9}