sizeof sizeof в C sizeof даёт размер в байтах для данного типа. Пример sizeof на C: // @author Subbotin B.P. // @see http://sbp-program.ru #include <stdio.h> void main(void) { int typeSize = 0; printf(«ntTYPE SIZESnn»); typeSize = sizeof(long); printf(«long type sizet=t%d bytesn», typeSize); typeSize = sizeof(int); printf(«int type sizet=t%d bytesn», typeSize); typeSize = sizeof(short); printf(«short type sizet=t%d bytesn», typeSize); typeSize = sizeof(char); printf(«char type sizet=t%d bytesn», typeSize); typeSize = sizeof(float); printf(«float type sizet=t%d bytesn», typeSize); typeSize = sizeof(double); printf(«double sizet=t%d bytesn», typeSize); typeSize = sizeof(long double); printf(«long doublet=t%d bytesn», typeSize); printf(«n»); return 0; } Получаем: такой результат. Язык C