Comment in C Language

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Comments are used in C (and other programming languages) to add notes, explanations, or documentation to the source code. Comments are ignored by the compiler and do not affect the behavior of the program. They are used to make the code more readable and understandable for the programmer and other developers who may work on the code in the future.

There are two types of comments in C:

  1. Single-line comments: These comments start with the double slash (//) and continue until the end of the line. Everything on the same line after the double slash is considered a comment and ignored by the compiler.

Copy code

// This is a single-line comment

  1. Multi-line comments: These comments start with a forward slash and an asterisk (/) and end with an asterisk and a forward slash (/). Everything between the start and end markers is considered a comment and ignored by the compiler.

Copy code

/* This is a multi-line comment */

It's important to note that comments should be used sparingly and only to add information that is not already clear from the code itself. They should be used to explain the purpose of the code, describe how it works, or provide other relevant information that is not obvious from the code. Additionally, it's good practice to keep comments up to date and accurate, as outdated or incorrect comments can be more confusing than helpful.

1. C Basics

0 Comments

Start the conversation!

Be the first to share your thoughts

Frequently Asked Questions About Sciaku Courses & Services

Quick answers to common questions about our courses, quizzes, and learning platform

Didn't find what you're looking for?

help_center Contact Support