分隔的評論

Version >= C99

C99 介紹了使用 C++風格的單行註釋。這種型別的註釋以兩個正斜槓開始,並執行到一行的末尾:

// this is a comment

這種型別的註釋不允許多行註釋,但可以通過一個接一個地新增幾個單行註釋來建立註釋塊:

// each of these lines are a single-line comment
// note how each must start with
// the double forward-slash

這種型別的註釋可以在其自己的行上或在程式碼行的末尾使用。但是,因為它們執行到行尾,所以它們可能不會在程式碼行中使用

// this comment is on its own line
if (x && y) { // this comment is at the end of a line
    // this comment is within an if, on its own line
}