Operator |
Name of Operator |
What it does |
How it is used |
sizeof() |
sizeof |
It returns the size of
variable |
if variable a is a
interger variable the sizeof(a) will return 4 |
cast |
type cast |
it converts one
datatype to another datatype |
int(5.260) would return
5 |
, |
comma operator |
Used to link the
related expressions together |
a = (1,2,3) would
return 3 |
& |
Address Operator |
returns the address of
the variable. |
&a |
* |
pointer operator |
pointer to a variable |
*a |
0 Comments
Post a Comment