c语言中有关结构体和指针 的两到题 希望有人帮帮我
main(){
struct PRG
{
int c ;
union
{
charst[6];int i; long int j ;
}test;
};
printf("%d",sizeof(struct PRG));
}
答案 8
#include<string.h>
main()
{
char*p1,*p2,str[50]="ADCDEFG"
p1="abcd";
p2="efgh"
strcpy(str+1,p2+1);
strcpy(str+3,p1+3);
printf("%s",str);
}
答案为Afgd。
希望过程能详细点 谢谢