Multiple choice

Which of the following has error?

  1. // C is a very simple language.

  2. // C is a very simple language //.

  3. /* C is a very simple language */.

  4. /* C is a very simple language.

  5. // C is a very simple language */.

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Incomplete comment! There shoud be a / in the last of the statement. /________*/ is used to create single line and multiple line comments.