Computer Science, asked by TbiaSupreme, 11 months ago

sizeof operator is a unary operator. State whether the statement is True (or) False And Justify it

Answers

Answered by sn1342
0
False.. sizeof will measure the memory of data type
Answered by smartbrainz
0

The size of the operator is a "unary operator". The statement is True

Explanation:

Sizeof() is an operator in the C language. It is used to calculate the size of the operand and it is a "unary operator" during compilation. The "sizeof()" operator returns unsigned integral data type and are normally mentioned by size_t.

The sizeof() takes any "data type, integer, and floating-point" including primitive, pointer type, or compound data types like structure, union, etc. The sizeof() operator function in several ways depending on the operand type.

Similar questions