When I say “comment out”, does it mean to uncomment something or comment it?
When I say "comment out", does it mean to uncomment something or comment it?
What is better, or more correctly used?
PS: I'm talking about source code.
meaning programming
add a comment |
When I say "comment out", does it mean to uncomment something or comment it?
What is better, or more correctly used?
PS: I'm talking about source code.
meaning programming
add a comment |
When I say "comment out", does it mean to uncomment something or comment it?
What is better, or more correctly used?
PS: I'm talking about source code.
meaning programming
When I say "comment out", does it mean to uncomment something or comment it?
What is better, or more correctly used?
PS: I'm talking about source code.
meaning programming
meaning programming
edited Feb 3 '16 at 18:51
Carl
1054
1054
asked Jul 9 '11 at 11:48
genesisgenesis
1,01371829
1,01371829
add a comment |
add a comment |
6 Answers
6
active
oldest
votes
To comment out is to render a block of code inert by turning it into a comment.
In C# code for example, commenting out code is done by putting //
at the start of a line, or surrounding the code with /*
and */
. Here the line inside the loop is commented out:
for (int i = 0; i < 10; i++) {
//Console.WriteLine(i);
}
To uncomment something means to remove the characters that makes it a comment. The expression only makes sense if the comment contains something that would work as code, usually something that was commented out earlier. To uncomment a regular comment would just cause a syntax error.
add a comment |
"Comment out" means to use comment syntax to remove something from the parsed code. "Uncomment" is the reverse operation. They are both the correct expression for their respective referents.
3
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
2
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
2
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
1
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
2
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
|
show 5 more comments
As reported by the NOAD, the meaning of comment out is "(computing) turn part of a program into a comment so that the computer ignores it when running the program."
You could try commenting out that line.
The definition provided by Dictionary.com is the following one:
To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted.
The PC Magazine Enciclopedia defines comment out using the following words:
To disable lines of code in a program by surrounding them with comment-start and comment-stop characters.
Answers.com defines comment out as "(computer science) To render a statement in a computer program inactive by making it a comment."
Comment out doesn't mean to remove a comment, but to add a comment to ,e.g., a code line to avoid it gets compiled or interpreted.
add a comment |
For me when you comment it is to clarify something that will make it easier for the user to understand like in c++(although a simple example and should not be used like this):
int n = 0;
//add 4 to variable n and then output it
n += 4;
cout << n;
But shall someone say comment out I think of the coder commenting out a line or section of code to see what happens with program execution. Such as this:
First code:
int n = 0;
n += 4;
cout << n;
And then commenting out a line to see what will happen with the program:
int n = 0;
//n += 4;
cout << n;
The first code will output 4 but when I comment out the second line it will output 0
I simply use this so that I don't have to delete code and then rewrite it because twe
add a comment |
The idea is "remove by commenting/turning into a comment". Note that "out" is used to mean remove in a number of phrasal verbs: "dig out", "force out", "smoke out" etc-- and indeed, on more or less the same analogy "wipe out".
As the opposite, you can "uncomment" a line/section, or you "comment it back in". The latter is slightly odd, because logically you are uncommenting so that the code to be put back in. But hey, language doesn't always use the same logic as mathematics.
add a comment |
//That is a function for calculating 2 intgers and display the result. - this is a comment
int add(int a, int b)
{
return a+b;
print(a+b);
}
Now, you think the "print(a+b)" is useless, you don't want it anymore, but you want to remain it at here in case whenever you want to reuse it. You don't have to delete this line, you can just comment out it like that,
int add(int a, int b)
{
return a+b;
//print(a+b);
}
add a comment |
protected by tchrist♦ Aug 13 '14 at 14:36
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
To comment out is to render a block of code inert by turning it into a comment.
In C# code for example, commenting out code is done by putting //
at the start of a line, or surrounding the code with /*
and */
. Here the line inside the loop is commented out:
for (int i = 0; i < 10; i++) {
//Console.WriteLine(i);
}
To uncomment something means to remove the characters that makes it a comment. The expression only makes sense if the comment contains something that would work as code, usually something that was commented out earlier. To uncomment a regular comment would just cause a syntax error.
add a comment |
To comment out is to render a block of code inert by turning it into a comment.
In C# code for example, commenting out code is done by putting //
at the start of a line, or surrounding the code with /*
and */
. Here the line inside the loop is commented out:
for (int i = 0; i < 10; i++) {
//Console.WriteLine(i);
}
To uncomment something means to remove the characters that makes it a comment. The expression only makes sense if the comment contains something that would work as code, usually something that was commented out earlier. To uncomment a regular comment would just cause a syntax error.
add a comment |
To comment out is to render a block of code inert by turning it into a comment.
In C# code for example, commenting out code is done by putting //
at the start of a line, or surrounding the code with /*
and */
. Here the line inside the loop is commented out:
for (int i = 0; i < 10; i++) {
//Console.WriteLine(i);
}
To uncomment something means to remove the characters that makes it a comment. The expression only makes sense if the comment contains something that would work as code, usually something that was commented out earlier. To uncomment a regular comment would just cause a syntax error.
To comment out is to render a block of code inert by turning it into a comment.
In C# code for example, commenting out code is done by putting //
at the start of a line, or surrounding the code with /*
and */
. Here the line inside the loop is commented out:
for (int i = 0; i < 10; i++) {
//Console.WriteLine(i);
}
To uncomment something means to remove the characters that makes it a comment. The expression only makes sense if the comment contains something that would work as code, usually something that was commented out earlier. To uncomment a regular comment would just cause a syntax error.
edited Jul 31 '15 at 19:42
answered Jul 9 '11 at 14:31
GuffaGuffa
8,4781831
8,4781831
add a comment |
add a comment |
"Comment out" means to use comment syntax to remove something from the parsed code. "Uncomment" is the reverse operation. They are both the correct expression for their respective referents.
3
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
2
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
2
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
1
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
2
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
|
show 5 more comments
"Comment out" means to use comment syntax to remove something from the parsed code. "Uncomment" is the reverse operation. They are both the correct expression for their respective referents.
3
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
2
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
2
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
1
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
2
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
|
show 5 more comments
"Comment out" means to use comment syntax to remove something from the parsed code. "Uncomment" is the reverse operation. They are both the correct expression for their respective referents.
"Comment out" means to use comment syntax to remove something from the parsed code. "Uncomment" is the reverse operation. They are both the correct expression for their respective referents.
edited Jul 9 '11 at 11:57
answered Jul 9 '11 at 11:52
MarcinMarcin
4,4781421
4,4781421
3
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
2
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
2
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
1
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
2
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
|
show 5 more comments
3
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
2
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
2
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
1
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
2
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
3
3
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
@Genesis: To clarify, as I understand it, to comment out means to leave the unwanted code unchanged, but insert before it (and after, for multi-line comments) the relevant character sequence that makes the compiler ignore that code when compiling. In C++ that's a double-slash before it on a single-line, or slash/asterisk before and asterisk/slash after where multiple lines are being commented out.
– FumbleFingers
Jul 9 '11 at 12:37
2
2
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
I don't understand what that means. Are you just saying that as an alternative to enclosing the entire unwanted section in "begin/end comment" delimiters, you can prefix each line with the sequence that means "the rest of this line is a comment". The important point is that the unwanted code itself remains unchanged - it's just that the compiler/interpreter is directed to ignore it.
– FumbleFingers
Jul 9 '11 at 13:36
2
2
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
I never mentioned "the line" anywhere when referring to what was to be commented out. I called it "the unwanted code", which could be anything from part of a line to a substantial section of code.
– FumbleFingers
Jul 9 '11 at 14:10
1
1
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
No worries. I think yours is the best answer anyway, but when OP paraphrased it back as "remove out this line" I thought he might not have understood the answer fully. So it seemed important to clarify that the actual text of the code being "commented out" remains unchanged - you just mark it so it's ignored.
– FumbleFingers
Jul 10 '11 at 16:19
2
2
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
Not sure anyone has explicitly said this yet, it may help the OP to internalise things... The way I've always understood it is that the "out" and "in" relate to the compilation. You are adding/removing code from the build. "Commenting out" is taking a piece of code out of the build.
– Rupe
Jul 15 '14 at 10:13
|
show 5 more comments
As reported by the NOAD, the meaning of comment out is "(computing) turn part of a program into a comment so that the computer ignores it when running the program."
You could try commenting out that line.
The definition provided by Dictionary.com is the following one:
To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted.
The PC Magazine Enciclopedia defines comment out using the following words:
To disable lines of code in a program by surrounding them with comment-start and comment-stop characters.
Answers.com defines comment out as "(computer science) To render a statement in a computer program inactive by making it a comment."
Comment out doesn't mean to remove a comment, but to add a comment to ,e.g., a code line to avoid it gets compiled or interpreted.
add a comment |
As reported by the NOAD, the meaning of comment out is "(computing) turn part of a program into a comment so that the computer ignores it when running the program."
You could try commenting out that line.
The definition provided by Dictionary.com is the following one:
To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted.
The PC Magazine Enciclopedia defines comment out using the following words:
To disable lines of code in a program by surrounding them with comment-start and comment-stop characters.
Answers.com defines comment out as "(computer science) To render a statement in a computer program inactive by making it a comment."
Comment out doesn't mean to remove a comment, but to add a comment to ,e.g., a code line to avoid it gets compiled or interpreted.
add a comment |
As reported by the NOAD, the meaning of comment out is "(computing) turn part of a program into a comment so that the computer ignores it when running the program."
You could try commenting out that line.
The definition provided by Dictionary.com is the following one:
To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted.
The PC Magazine Enciclopedia defines comment out using the following words:
To disable lines of code in a program by surrounding them with comment-start and comment-stop characters.
Answers.com defines comment out as "(computer science) To render a statement in a computer program inactive by making it a comment."
Comment out doesn't mean to remove a comment, but to add a comment to ,e.g., a code line to avoid it gets compiled or interpreted.
As reported by the NOAD, the meaning of comment out is "(computing) turn part of a program into a comment so that the computer ignores it when running the program."
You could try commenting out that line.
The definition provided by Dictionary.com is the following one:
To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted.
The PC Magazine Enciclopedia defines comment out using the following words:
To disable lines of code in a program by surrounding them with comment-start and comment-stop characters.
Answers.com defines comment out as "(computer science) To render a statement in a computer program inactive by making it a comment."
Comment out doesn't mean to remove a comment, but to add a comment to ,e.g., a code line to avoid it gets compiled or interpreted.
answered Jul 9 '11 at 14:10
kiamlalunokiamlaluno
43.5k56181295
43.5k56181295
add a comment |
add a comment |
For me when you comment it is to clarify something that will make it easier for the user to understand like in c++(although a simple example and should not be used like this):
int n = 0;
//add 4 to variable n and then output it
n += 4;
cout << n;
But shall someone say comment out I think of the coder commenting out a line or section of code to see what happens with program execution. Such as this:
First code:
int n = 0;
n += 4;
cout << n;
And then commenting out a line to see what will happen with the program:
int n = 0;
//n += 4;
cout << n;
The first code will output 4 but when I comment out the second line it will output 0
I simply use this so that I don't have to delete code and then rewrite it because twe
add a comment |
For me when you comment it is to clarify something that will make it easier for the user to understand like in c++(although a simple example and should not be used like this):
int n = 0;
//add 4 to variable n and then output it
n += 4;
cout << n;
But shall someone say comment out I think of the coder commenting out a line or section of code to see what happens with program execution. Such as this:
First code:
int n = 0;
n += 4;
cout << n;
And then commenting out a line to see what will happen with the program:
int n = 0;
//n += 4;
cout << n;
The first code will output 4 but when I comment out the second line it will output 0
I simply use this so that I don't have to delete code and then rewrite it because twe
add a comment |
For me when you comment it is to clarify something that will make it easier for the user to understand like in c++(although a simple example and should not be used like this):
int n = 0;
//add 4 to variable n and then output it
n += 4;
cout << n;
But shall someone say comment out I think of the coder commenting out a line or section of code to see what happens with program execution. Such as this:
First code:
int n = 0;
n += 4;
cout << n;
And then commenting out a line to see what will happen with the program:
int n = 0;
//n += 4;
cout << n;
The first code will output 4 but when I comment out the second line it will output 0
I simply use this so that I don't have to delete code and then rewrite it because twe
For me when you comment it is to clarify something that will make it easier for the user to understand like in c++(although a simple example and should not be used like this):
int n = 0;
//add 4 to variable n and then output it
n += 4;
cout << n;
But shall someone say comment out I think of the coder commenting out a line or section of code to see what happens with program execution. Such as this:
First code:
int n = 0;
n += 4;
cout << n;
And then commenting out a line to see what will happen with the program:
int n = 0;
//n += 4;
cout << n;
The first code will output 4 but when I comment out the second line it will output 0
I simply use this so that I don't have to delete code and then rewrite it because twe
answered Jul 10 '11 at 4:11
Matias GrioniMatias Grioni
411
411
add a comment |
add a comment |
The idea is "remove by commenting/turning into a comment". Note that "out" is used to mean remove in a number of phrasal verbs: "dig out", "force out", "smoke out" etc-- and indeed, on more or less the same analogy "wipe out".
As the opposite, you can "uncomment" a line/section, or you "comment it back in". The latter is slightly odd, because logically you are uncommenting so that the code to be put back in. But hey, language doesn't always use the same logic as mathematics.
add a comment |
The idea is "remove by commenting/turning into a comment". Note that "out" is used to mean remove in a number of phrasal verbs: "dig out", "force out", "smoke out" etc-- and indeed, on more or less the same analogy "wipe out".
As the opposite, you can "uncomment" a line/section, or you "comment it back in". The latter is slightly odd, because logically you are uncommenting so that the code to be put back in. But hey, language doesn't always use the same logic as mathematics.
add a comment |
The idea is "remove by commenting/turning into a comment". Note that "out" is used to mean remove in a number of phrasal verbs: "dig out", "force out", "smoke out" etc-- and indeed, on more or less the same analogy "wipe out".
As the opposite, you can "uncomment" a line/section, or you "comment it back in". The latter is slightly odd, because logically you are uncommenting so that the code to be put back in. But hey, language doesn't always use the same logic as mathematics.
The idea is "remove by commenting/turning into a comment". Note that "out" is used to mean remove in a number of phrasal verbs: "dig out", "force out", "smoke out" etc-- and indeed, on more or less the same analogy "wipe out".
As the opposite, you can "uncomment" a line/section, or you "comment it back in". The latter is slightly odd, because logically you are uncommenting so that the code to be put back in. But hey, language doesn't always use the same logic as mathematics.
answered Jul 9 '11 at 13:19
Neil CoffeyNeil Coffey
18k13268
18k13268
add a comment |
add a comment |
//That is a function for calculating 2 intgers and display the result. - this is a comment
int add(int a, int b)
{
return a+b;
print(a+b);
}
Now, you think the "print(a+b)" is useless, you don't want it anymore, but you want to remain it at here in case whenever you want to reuse it. You don't have to delete this line, you can just comment out it like that,
int add(int a, int b)
{
return a+b;
//print(a+b);
}
add a comment |
//That is a function for calculating 2 intgers and display the result. - this is a comment
int add(int a, int b)
{
return a+b;
print(a+b);
}
Now, you think the "print(a+b)" is useless, you don't want it anymore, but you want to remain it at here in case whenever you want to reuse it. You don't have to delete this line, you can just comment out it like that,
int add(int a, int b)
{
return a+b;
//print(a+b);
}
add a comment |
//That is a function for calculating 2 intgers and display the result. - this is a comment
int add(int a, int b)
{
return a+b;
print(a+b);
}
Now, you think the "print(a+b)" is useless, you don't want it anymore, but you want to remain it at here in case whenever you want to reuse it. You don't have to delete this line, you can just comment out it like that,
int add(int a, int b)
{
return a+b;
//print(a+b);
}
//That is a function for calculating 2 intgers and display the result. - this is a comment
int add(int a, int b)
{
return a+b;
print(a+b);
}
Now, you think the "print(a+b)" is useless, you don't want it anymore, but you want to remain it at here in case whenever you want to reuse it. You don't have to delete this line, you can just comment out it like that,
int add(int a, int b)
{
return a+b;
//print(a+b);
}
answered 19 mins ago
ZhangZhang
1795
1795
add a comment |
add a comment |
protected by tchrist♦ Aug 13 '14 at 14:36
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?