Chinaunix首页 | 论坛 | 博客
  • 博客访问: 482431
  • 博文数量: 120
  • 博客积分: 1853
  • 博客等级: 上尉
  • 技术积分: 1177
  • 用 户 组: 普通用户
  • 注册时间: 2011-10-22 22:40
文章分类

全部博文(120)

文章存档

2013年(16)

2012年(104)

分类: C/C++

2012-05-18 10:13:09

原来结构体可以直接赋值


点击(此处)折叠或打开

  1. #include <stdio.h>
  2. #include <string.h>

  3. struct arry_str{
  4.     char string[20];
  5. };

  6. int main(){
  7.     struct arry_str res, des;

  8.     strcpy(res.string, "yangyapo");

  9.     des = res;
  10.     if(strcmp(res.string, des.string) == 0)
  11.         printf("copy sucess\n");
  12.     else
  13.         printf("copy failed\n");
  14.     return 0;
  15. }

阅读(572) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~