We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Comments

In C, there are two ways to write comments:

// This is a single-line comment

/*
This is a multi-line comment
I can just keep adding lines
and it will still be a comment
*/

/* and */ are used to denote the beginning and end of a multi-line comment.

Assignment

Looks like someone on the team doesn't know how to terminate a comment.

Fix the bug.