Comments
#include "stdafx.h"
#include <iostream>
using namespace std;
int main ()
{
// A comment is a line (or multiple lines) of text that are inserted into the source code to explain what the code is doing.
//Single line comment is written after '//' symbol and comment containing multiple lines are written within /* and */ pair of symbols
// Comments are ignored by the compiler.
cout<< "HELLO WORLD..!!"; // Displays the string 'HELLO WORLD..!!'
return 0;
}
Output:
HELLO WORLD..!!