帮忙改一个C程序,谢谢 - C/C++ / C语言
C/C++ code:
#include <stdio.h>
#include <string.h>
struct s1
{
char a[10];
};
struct s2
{
char b[10];
};
int main()
{
struct s1 *ps1;
struct s2 *ps2;
ps1->a ="wanggl";
strcpy(ps2->b,ps1->a);
printf("%s\n",ps2->b);
getchar();
return 0;
}
1>c:\documents and settings\administrator\桌面\c51\te\te.cpp(16) : error C2440: “=”: 无法从“const char [7]”转换为“char [10]”
int main()
{
struct s1 ps1;
struct s2 ps2;
strcpy(ps1.a ,"wanggl");
strcpy(ps2.b,ps1.a);
printf("%s\n",ps2.b);
getchar();
return 0;
}
C/C++ code:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct s1
{
char a[10];
};
struct s2
{
char b[10];
};
int main()
{
struct s1 *ps1;
struct s2 *ps2;
ps1 = (struct s1 *)malloc(sizeof(struct s1));
ps2 = (struct s2 *)malloc(sizeof(struct s2));
ps1->a ="wanggl";
strcpy(ps2->b,ps1->a);
printf("%s\n",ps2->b);
getchar();
return 0;
}
上面竟然没分配内
相关问答:
写了个测试程序如下
struct hostent *hp;
char AlarmDevIP[20];
int x2;
hp = gethostbyname("www.google.com");
if (hp)
{
......
有一10*10矩阵,除去第一个点(0,0)和最后一点(9,9),还有八个点为1,其他都为0,要求用二维数组表示。八个点是随机生成的,编写相关程序表示矩阵所有可能情况。
真心求教各位高手,哎!本人太菜了!呵呵!
......
公司开发一个触摸屏程序,我负责的一块,实现这样一个功能,当鼠标点击窗口中图片(一张图分成几部分)的其中一部分时,将这部分图片截取出来,弹出新的窗口,将截取出的图片显示出来。我使用Rectange类控制了返回, ......