/* Write in your code */ (How to make comments in C programming)
You can also use //
for single line comments. I find this a lot easier than the /* comment */
pattern for single line.
/* Write in your code */ (How to make comments in C programming)
You can also use //
for single line comments. I find this a lot easier than the /* comment */
pattern for single line.
Yeah that too is there... I forgot to mention about the short commands to make comments... Ctrl + / & Ctrl + shift + /..
Particularly when using a Linux editor, I haven't tried the commands.. but // method is not accepted that's why I unconsciously skipped it.