hi,
Please tell me why an empty Structure will occupy 2Bytes in C++
Thanks
On my compiler it is 1 byte because that is the minimum size of any object. There is no such thing as an object that does not take up any space.
#include <iostream>
using namespace std;
struct x
{
};
int main()
{
cout << "sizeof(x) = " << sizeof(x) << "\n";
}
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.