在下面的代码中,字符串“12345678901234567890”不能完全复制到联合类型变量中。这让我真的很困惑?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
typedef union
{
int i;
long l;
float f;
double d;
void *v;
char *s;
char c;
} UType;
UType NewUType_s(char *s)
{
UType temp;
strcpy(temp.s, s); // If we print temp.s and s here, both of them are "12345678901234567890
return temp;
}
int main()
{
UType m;
m = NewUType_s("12345678901234567890");
printf("%s\n", m.s);
return 0;
}
结果是:1234567890123456和一些特殊字符?
这个问题的解决方案可能是:
解决方案1:使用
malloc()
for m;解决方案2:将
NewUType_s
样式更改为指针函数UType *NewUType_s(char *s);
,一切都会正常工作,
但是,有人知道上述程序没有正确结果的原因吗?