文章列表
C语言中,宏替换的替换规则
摘要:简单来说:宏定义又称为宏代换、宏替换,简称“宏”。是C提供的三种预处理功能的其中一种。复杂的请看下面,讲的很全。下面的带参宏定义,多行宏定义,在Linux内核源码中很多。另外s……
文件的应用举例-应用fprintf函数
摘要:#include<stdio.h>typedef&nbsp;struct&nbsp;Stu{&nbsp;&nbsp;&nbsp;&nbsp;……
Scanf函数能否接收空格?
摘要:#include&nbsp;<stdio.h>void&nbsp;main(){&nbsp;&nbsp;&nbsp;&nbsp;char&a……
文件应用-fwrite函数
摘要:#include<stdio.h>typedef&nbsp;struct&nbsp;Stu{&nbsp;&nbsp;&nbsp;&nbsp;……
关于逻辑非“!”与取反“~”运算符
摘要:&nbsp;&nbsp;&nbsp;&nbsp;逻辑非返回值为“真”和“假”两种状态,C语言用“非0&rdq……