Basic introduction of C (Day one) Some Basic Concepts – Developed By – Bjarne Stroustrup C++ Character set – What does a character set means ? Character set of C++ means the character or the language understand by C++ language. Like humans, C++ has its own language.
Letters - A-Z, a-z Digits - all(0-9) Special Symbols -Tokens – Smallest individual unit in a program. C++ Has Following Tokens –White Spaces - Blank Space, Horizontal Tab(→), Carriage Return(↵), New line, Form Feed
- Keywords
- Identifiers
- Literals
- Punctuators
- Operators
Identifiers – a long sequence of letters and digits defined by a user. Example a, b, c, _data etc.
Literals – are data items that never change their value during a program run
Short Note on Literal
Punctuators or Seprators-
Operators – tokens that trigger some computation when applied to variables and other objects in an expression
- Unary Operators – are those operators that require only one operand to operate upon.
& Address operator
* Inderection Operator
+ Unary Plus
- Unary Minus
~ Bitwise Complement
++ Increment Operator
-- Decrement Operator
! Logical Negation
Precedence of Operators –
]]>

