What are comments in c programming

Comments in C programming are non-executable statements that are used to explain the code or provide additional information. They are ignored by the compiler and are added by the programmer for documentation purposes. Comments can be single-line comments, using //, or multi-line comments, enclosed between /* and */. Comments help improve the readability and maintainability of the code.