+ 1
what is sizeof
In c programming
2 Answers
+ 3
Hey Melu
It is a compile time unary operator which can be used to compute the size of its operand. The result of sizeof is of unsigned integral type. sizeof can be applied to any data-type, including primitive types such as integer and floating-point types, pointer types, or compound datatypes such as Structure, union etc.