摘要: c语言简单的指针int main(){ int *p; int a = 90; p = &a;//将变量a的地址赋值给指针 *p = 10;//通过指针修改内存上的值 return 0;}c语言简单结构体int main(){ //1. 定义结构体 struct Person { int age... 阅读全文
posted @ 2015-04-30 12:00 紅ノ肚兜メ 阅读(168) 评论(0) 推荐(0) 编辑