default1.c
来自「gcc-you can use this code to learn somet」· C语言 代码 · 共 17 行
C
17 行
// PRMS Id: 5204// Bug: g++ bashes the type of add_sym with the type of add, so calling it// with one parameter generates an error.// Build don't link:int add(int const &symbol, const unsigned char flags=(void*)0); // ERROR - invalid default argint add_sym(int const &symbol, const unsigned char flags=0);int main(){ int fname; add_sym(fname); // Guarantee a symbol exists}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?