InterviewSolution
Saved Bookmarks
| 1. |
Write down the use of “ \n ” , “ // ” and “ ; ” in C++ . |
|
Answer» ong>Explanation: ' \n' is known as NEWLINE operator and it is used to print output in next or new LINE. ' ; ' is known as statment TERMINATOR and used to terminate statments when we give input to compiler. |
|