Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in sizeof

How can I find the number of elements in an array?

c arrays sizeof

When a function has a specific-size array parameter, why is it replaced with a pointer?

What is the size of a pointer?

c++ pointers sizeof

what is the size of an enum type data in C++?

c++ enums sizeof

Is sizeof in C++ evaluated at compilation time or run time?

How can I print the result of sizeof() at compile time in C?

c sizeof compile-time

What is the size of void?

c++ c language-lawyer sizeof

How can this structure have sizeof == 0?

c++ language-lawyer sizeof

What should be the sizeof(int) on a 64-bit machine? [duplicate]

c++ c sizeof

Why (and when) do I need to use parentheses after sizeof?

c sizeof

Why is the size of a function in C always 1 byte?

c function size sizeof

Why is the size of an empty class in C++ not zero? [duplicate]

c++ sizeof

Why does a lambda have a size of 1 byte?

c++ c++11 lambda c++14 sizeof

Why sizeof int is wrong, while sizeof(int) is right?

c++ c sizeof

Why is sizeof considered an operator?

c operators sizeof

Are there machines, where sizeof(char) != 1, or at least CHAR_BIT > 8?

c char standards sizeof c99

Why are C character literals ints instead of chars?

c++ c char sizeof

Why isn't the size of an array parameter the same as within main?

c arrays function sizeof

Why do I get a warning every time I use malloc?

c gcc malloc warnings sizeof

sizeof single struct member in C

c struct sizeof