double a=2.132; char arr[8];
有没有办法在标准C中这样做?谁能提供任何解决方案?
#include <string.h> double a=2.132; char arr[sizeof(a)]; memcpy(arr,&a,sizeof(a));