03 2016 档案
摘要:这个问题很简单,但是它涉及的面很广,所以很具有学习的意义。 #include<stdio.h> #include<string.h> #include<stdlib.h> struct Emplyee { int num; char name[20]; int age; struct Emplyee
阅读全文
摘要:1.随便打开一个项目,可以看到代码框内并没有显示行号 2.选择“工具”-“选项”,打开后界面如下 3.选择文本编辑器,找到下图中的“行号”并勾选 4.行号可以显示了
阅读全文
摘要:指针数组就是存储指针的数组,数组指针就是指向数组的存储。 使用实例如下: #include<stdio.h> void main() { //数组指针的使用 int s[3][4] = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 } }; in
阅读全文