sizeof Usage: sizeof(e)
The number of bytes required for allocation of e-type data. If e
describes the array, then e means the whole array, and not only the
address of the first element, as in other operations.
(type) Usage: (type)e
The value of e is converted into the data type.
Example:
x = (float)n / 3;
The integer value of the variable n is transformed into
the floating-point number before dividing by 3.
() Usage: fe(e1, e2,..., eN)
The fe function is called with the arguments e1, e2,..., eN.
order from
Example:
x = sqrt(y);
|