2016年10月23日
摘要: 在/etc/vim/下有两个文件,分别为vimrc 和vimrc.tiny 1. 在vimrc文件中加入:set tabstop=4 2.保存退出即可 3.再次使用vim时,设置就会生效 在vim写代码可以完美tab键,不用按空格来控制格式 补充: vim显示行号:set number 阅读全文
posted @ 2016-10-23 10:48 魄灠 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: #include<malloc.h>#include<stdio.h>#define LEN sizeof(struct student)typedef struct student{ int num; int age; float score; struct student *next;}stu; 阅读全文
posted @ 2016-10-23 10:33 魄灠 阅读(199) 评论(0) 推荐(0) 编辑