C memory managmentBasics
Comments
Comments in C language
In C, there are two ways to write comments:
// This is a single-line comment
/*
This is a multi-line comment
I can just keep adding lines
and it will still be a comment
*/
/* and */ are used to denote the beginning and end of a multi-line comment.