c++ basic
C++ is a coding language which can be understand by computer and compiler
There are tokens also
1. Key word
2. Identifier
3. Constant
4. Operations
5. Strings
6. Special symbol like
Bracket ()
Braces ||
Comma,
Hash #
Example of c++ easy and simple program
// my name c++ program//
#include<iostream>
using namespace std;
int main()
{
cout << " My name is vishwajeet";
return 0;
}
This is the one of simple program on c++ language
(// my name c++ program//)
This line is comment line . Comment link always starts with // and there is another comment link which starts with /* and end with */ this is multi line comment