answersLogoWhite

0


Best Answer

Usually, it is (there are special cases (not in C though), when compiler hints look like comments).

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is the comment ignored by the compiler?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What do not contain any program logic and are ignored by the language processor?

comment


How do you insert comment in css file?

Comments in a Cascading Style Sheet consist of a forward-slash adjacent to an asterisk (star), the comment, and an asterisk (star) adjacent to a forward-slash.Anything within the two symbols (/* and */) is considered to be a comment. For example:/* This is a comment.Anything between thetwo symbols is ignored. */


What is single line comments as used in C programming?

single line comment are comment written in single line.in c there are two types of comment single line and multiple line.single line comment is written using // and multiple line comment is written between /*comment*/.compiler does not compile comments.it is used for better understanding of program.


How can you create a comment in a C plus plus program?

There are two ways:The single line comment with a double slash //. Everything after the double slash on a single line is commented out.The multi-line comment using a /* to open, and a */ to close.A good IDE will color code the comments instantly.


Comment statement of BASIC programming language?

In original Standard BASIC comments were indicated by a "REM" (short for "REMARK") statement. So, if "REM" was the first characters on a line, the rest of the line was treated as a comment and ignored by the interpreter or compiler. Later dialects of "Structured" Basic use exclamation points (!) or single quotes (') to indicate the start of a comment Some dialects require the exclamation point or single quote to be the first character on the line, others allow them to appear later in the line after executable code. Most dialects still support the REM notation as well.

Related questions

What is comment in C?

Something that the compiler ignores.Comments are enclosed between /* and */.


What does not contain any program logic and are ignored by the language Processor?

User comments are ignored by the language, period. A comment may contain program logic but because all comments are ignored, all logic contained within them is also ignored. Comments are intended specifically for (human) readers, not the language processor.


What starts a comment in a C-base language?

// This is a one-line comment /* This is another comment Everything between the slash-star and the star-slash is commented out If you forget to close this comment you will get a compiler error */


Do not contain any program logic and are ignored by the language Processor?

comment


How do you express comments in Linux?

# This comment is ignored as it is preceded with a hash sign (#).


What do not contain any program logic and are ignored by the language processor?

comment


How do you insert comment in css file?

Comments in a Cascading Style Sheet consist of a forward-slash adjacent to an asterisk (star), the comment, and an asterisk (star) adjacent to a forward-slash.Anything within the two symbols (/* and */) is considered to be a comment. For example:/* This is a comment.Anything between thetwo symbols is ignored. */


What is single line comment?

single line comment are comment written in single line.in c there are two types of comment single line and multiple line.single line comment is written using // and multiple line comment is written between /*comment*/.compiler does not compile comments.it is used for better understanding of program.


What was he buddha's teaching on priests?

Buddhism doesn't have priests and has no need to comment on them. Zen Buddhists comment that literature or people indicating they know the answer are to be ignored.


What is single line comments as used in C programming?

single line comment are comment written in single line.in c there are two types of comment single line and multiple line.single line comment is written using // and multiple line comment is written between /*comment*/.compiler does not compile comments.it is used for better understanding of program.


11 What is a comment line How is a comment line noted within a file?

A comment line is a line or part of a line in a program that is intended as a remark or comment and is ignored when the program runs. It is noted within the file by using a semi-colon or an REM to mark a line as a comment.


What is a comment line How is a comment line noted within a file in Computer Science?

It all depends on your language. In C, you would use // for a single line comment that ends at the end of the line (in a MS compiler) /* or the slash and asterisk that ends at an asterisk and a slash */