Computer Science, asked by rashmitapattanaik82, 3 months ago

write a program on REM command​

Answers

Answered by monikachouksey72
4

You need to place REM command in front of every comment line. Its syntax is a follows. ... us try it in practice. We will write a small program to test the comments.

Answered by anshikathakur771
1

Answer:

Rem (abbreviation of remark) is a command (internal) found inside the Windows Command Processor Command Prompt, that allows for inclusion of comments inside batch programs. Comments are supported by most Programming languages usually via special syntax that is associated to them. Ex. Python using pound sign/hashtag ( # ) to denote a inline comment. Rem command is for inline comments, therefore the comment would only be valid till the end of the current line (or first occurrence of CRLF) Though multiline comments can be created using multiple Rem command on separate lines. In this article we will take a look at the Rem command, and would get to know about various uses for it.

Similar questions