QP School

Full Version: Single Line Comments in C 18
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Single line comments span over one line only and are ignored by the compiler.
In C they can be done with a double Slash.
In this case we do NOT need a semicolon at the end of the line.
Example:

#include <stdio.h>

int main()
{
    // This is a single line comment

    return 0;
}