問題:
float32 変数のすべての内容を int32 に渡したいのですが、次のようにします。
float32 source;
int32 destination;
source = 23.59463;         // Hex = 0x41BCC1CE 
destination = 0;           // Hex = 0x00000000
destination = source;      // Destination = 0x00000017 = 23 
これはすべてのコンテンツを渡すわけではありません。キャストを試み、コンテンツを間接的に取得しようとしましたが、ポインター型で問題が発生しました。
質問:
1) float32 のすべてのコンテンツを int32 に取得するにはどうすればよいですか?