Answer :
Comments used by a programmer which is included in a program
Explanation:
1.comment is a programmer-readable explanation or annotation in the source code of a computer program. They are added with the purpose of making the source code easier for humans to understand, and are generally ignored by compilers and interpreters.[1][2] The syntax of comments in various programming languages varies considerably.
2.The syntax of comments in various programming languages varies considerably.
Tags
- BUG – a known bug that should be corrected.
- FIXME – should be corrected.
- HACK – a workaround.
- TODO – something to be done.
- UNDONE – a reversal or "roll back" of previous code.
- XXX – warn other programmers of problematic or misguiding code.
3.In FORTRAN, BASIC, and COBOL languages, comments are full lines; and each comment is begun by a specific comment mark in a fixed position on the line. In BASIC, REMark lines start with REM. A FORTRAN comment is indicated by a C in position 1, and only works if the C is in position 1. The comment takes the entire line.
The syntax of comments in various programming languages varies considerably.