#line、几个常见C语言预处理和条件编译时间:2022-02-09 22:19:071.#line #line 的作用是改变当前行数,使用形式如下: 用法示例: int main(){#line 3 printf("%d\n",__LINE__);return 0;} 输出: 3