zhumengyun 发表于 2015-5-18 10:33:14

关于为操作


#include<iostream>
using namespace std;
typedef struct bistruct
{
      int b1:5;
      int   :2;
      int b2:2;

}bistruct;
int main()
{
      bistruct b;
      memcpy(&b,"EMC EXAMINATION",sizeof(b)),
                cout<<b.b1<<b.b2<<endl;
      return 0;
}
为什么结果是5,-2?
页: [1]
查看完整版本: 关于为操作