Single Line Comments in C 18 - Printable Version +- QP School (https://qomplainerzschool.lima-city.de) +-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3) +--- Forum: C 18 Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=32) +--- Thread: Single Line Comments in C 18 (/showthread.php?tid=3348) |
Single Line Comments in C 18 - Qomplainerz - 04-06-2022 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; } |