I to generate
Vodify above program so as to print output
Whate the neam with maximum three lines or
so as to print output as 5@1069.
imum three lines of code and that
Answers
I to generate
Vodify above program so as to print output
Whate the neam with maximum three lines or
so as to print output as 5@1069.
imum three lines of code and that
Answer:
begin with //, indicating that these two lines are comments. Comments do not cause the computer to perform any action when the program is run. Comments are ignored by the C compiler and do not cause any machine-language object code to be generated. The preceding comment simply describes the figure number, file name and purpose of the program.
You can also use /*...*/ multiline comments in which everything from /* on the first line to */ at the end of the last line is a comment. We prefer // comments because they’re shorter and they eliminate common programming errors that occur with /*...*/ comments, especially when the closing */ is omitted.