answersLogoWhite

0


Best Answer

Yes, you can use the multiline comment. Start the comment with /* and end the comment with */

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can comment span more than one line in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the correct JavaScript syntax to insert a comment that has more than one line?

The proper syntax to insert a multi-line comment into JavaScript is to surround the comment with /* and */ function useless() { /* This function doesn't do anything We should come back to it. Soon. */ }


How do you write a comment tag on HTML document?

Adding a comment in HTML is very useful so that you can quickly see what a section of code is supposed to be doing. It also can be useful to define who wrote a piece of code when multiple people are on a project together. To create a comment line you start with the < character followed by an exlamation mark and then two dashes. You then type your comment and close it off with two dashes and the > character. See example below. <!-- This is a comment line --> You can also add more dashes at the beginning or in the middle with no ill effects. See example below. <!-------- This is another --- comment line -->


Difference between one way slab and two way slab in construction?

Ans: One way slab is the slab having ratio of longer span to shorter span equal to or more than 1.5 . If the ratio of longer span to shorter span is equal to or less than 1.5, then such slabs are called as two way slab. In one way slab main tensile reinforcement is placed parellel to shorter side which will be the main steel, where as in two way slab both direction required main steel.


What HTML tags do you use to include comments in your source code?

Comment Tags are ignored by the browser and are not displayed. If you want to make a note or a comment within your HTML document use the following HTML You can use it to mark off where a certain section of your page starts and ends so you can easily locate it to edit. for example (The browser will ignore this notation) The WikiAnswers website rocks. (The browser will ignore this notation)


What is the on screen difference between JTextField and JTextArea in java?

A JTextField is a line to type in and a JTextArea is area to type text into (more than one line).