The sizeof keyword in C language

Description:

******The sizeof in C language is a keyword and an operator, not a function, used to calculate the number of bytes of memory occupied by a variable or data type.

There are three ways to use ******sizeof:

***sizeof(variable name) (with brackets)

***sizeof variable name (no parentheses)

***sizeof (data type) 



Guess you like

Origin blog.csdn.net/wzc18743083828/article/details/26704693