zhliao2

风雨兼程,一路向北-------fpga (Keep a quiet heart study)

2012年12月22日

结构体中对字符串的赋值

摘要: # include <stdio.h># include <string.h> //strcpy()typedef struct { int number; char name[10];} student, *pstudent;student struct_call_by_value (student boy){ boy.number = 16; strcpy(boy.name, "zhliao2"); //这里是对字符串复制 printf ("in function:\n"); printf ("number = &a 阅读全文

posted @ 2012-12-22 21:00 zhliao 阅读(8665) 评论(0) 推荐(0) 编辑