c语言
c语言爱好者
请叫我大虾
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c语言系列一
c语言有32个关键字 9种控制语句 34种运算符原创 2020-11-08 11:59:43 · 239 阅读 · 0 评论 -
c一:指针引用(int * &p )和指针(int * q)的区别
#include <iostream> using namespace std; int g = 300; void print(int p, int q) { cout << p << endl << q << endl; } /* * 1. int *&p 定义一个指针引用,既可以改变指针指向的内容,...原创 2018-07-11 11:02:52 · 3439 阅读 · 1 评论 -
c二:数组与指针
原创 2018-07-13 09:34:20 · 228 阅读 · 0 评论 -
c三:string
"Hello, World\n", 这是字符串常量(string constant or character string)原创 2018-07-16 19:23:27 · 277 阅读 · 0 评论 -
C四:专业名词
escape sequence:转义序列 Arithmetic Expressions: 算术运算式 comments:注释 declarations:声明 variables:变量 loops:循环 formatted output:格式化输出 right-justified:右对齐 Symbolic Constants:符号常量 EOF: end of file pre...原创 2018-07-17 19:53:03 · 300 阅读 · 0 评论