The below Note seems to be ambiguous to me[found in a book of C++].
It is possible to declare an unnamed Bit-Field to create padding in order to implement a specific object layout.
What does the author want to convey from the above note?
I tried the following programs to understand but still not clear.`
class s
{
public:
unsigned i:1;
};
int main()
{
s x;
x.i=1;
cout<<x.i<<endl; //outputs 1
return 0;
}
How the program is working perfectly without giving any warning or error?
I am using ideone[C++ (gcc-4.3.4)] : http://ideone.com/bLLz4
However, if i remove unsigned from the declaration, it gives the error:
prog.cpp:7: error: ISO C++ forbids declaration of āiā with no type
Another problem
class s
{
public:
int i:1;
};
int main()
{
s x;
x.i=1;
cout<<x.i<<endl; //outputs -1
return 0;
}
Does the output -1 depend upon the machine architecture['Endianness']?
How the output is coming -1?
http://ideone.com/XWbak