C/C++代码中的笔误
1. 在printf()的参数前加& (2015/10/7)
这是我写的一个数据生成器(generator)片段
int n=rand()%5+1; printf("%d\n", &n);
「以解决问题为乐」
真的喜欢么?真的喜欢就去做吧。
Lost Boy Calling 。。。。
... Many of these issues are best dealt with at the algorithmic level, rather than by "tweaking" the code.
This is an obscurity that catches the unwary.
原来我什么都不懂。
1. 在printf()的参数前加& (2015/10/7)
这是我写的一个数据生成器(generator)片段
int n=rand()%5+1; printf("%d\n", &n);