Comments in C/C++ - GeeksforGeeks
https://www.geeksforgeeks.org/comments-in-c-c23.08.2018 · Multi-line comment. Represented as /* any_text */ start with forward slash and asterisk (/*) and end with asterisk and forward slash (*/). It is used to denote multi-line comment. It can apply comment to more than a single line. It is referred to as C-Style comment as it was introduced in C programming.
How to write Comments in C Programming - Guru99
https://www.guru99.com/c-comments.html07.10.2021 · At run-time, a comment is ignored by the compiler. There are two types of comments in C: 1) A comment that starts with a slash asterisk /* and finishes with an asterisk slash */ and you can place it anywhere in your code, on the same line or several lines. 2) Single-line Comments which uses a double slash // dedicated to comment single lines.
Comments in C - javatpoint
https://www.javatpoint.com/comments-in-cComments in C with programming examples for beginners and professionals. There are 2 types of comments in C language: Single Line Comments, Multi Line Comments with example. covering concepts, control statements, c array, c pointers, c structures, c union, c strings and more.