Special Symbols With Types & Example In C Programming, Operators In C With Types
Get Our Latest Interview Questions: Aptitude, Reasoning, English, GD, HR-PI
5. Special Symbol:
C is having some special symbols apart from these tokens:
1. Comma Operator(,):
This operator is used to separate line.
Comma Operator Example:
char name[5]={a, b, c, d, e};
2. Size of():
This operator returns the number of byte that a operand contains.
Size of Operator Example:
int a,x;
x= sifeof(a);
ans: x=2;
3. Pointer operator:
It is used to hold the address of any other variables. Read In Next Chapter.
4. Member Selection Operator(, or .)
Read In Next Page.
6. Operators:
In c there are 8 operators:
- Arithmetic operator.
- Logical operator.
- Relational operator.
- Assignment operator.
- Conditional operator.
- Increment & Decrement operator.
- Bitwise operator.
- Special operator.
Expert Review: Special Symbol many people don't know, this is not a tough thing to learn, mainly we are using this operators in our general life book or copy writing.