> 4.7 Integral conversions > 3 If the destination type is signed, the value is unchanged if it can be represented in > the destination type (and bitfield width); otherwise, the value is implementationdefined.
例えば struct A { char str[10]; int b; int c; } ; という構造体で渡されてくるデータがあるとします。 これを以下のような型へのポインタを引数に取る関数(この中は 事情があって手を入れられない)に渡したいのですが、 struct B { int b; int c; } ;
この場合、struct B b1;を作りそこに対応メンバーをコピーして から渡す方法がありますが、参照でコピーせずにやりたいのですが うまくいきません。どうやったら良いでしょうか?