最近,在学习制定方案时,我注意到一些被认为有趣的东西。 我读过,像<代码>int i=0;”这样的声明是强行定义的唯一途径,而诸如<代码>extern int i;就意味着强迫声明。 发言如<代码>int i;取决于具体情况。 但是,如果将外部与初始化结合起来,如<代码>extern int i=13;,则会出现什么情况。 竞争者发出警告。 但这一规则是怎样的?
For example, let s say I want to find a particular word or number in a file. The contents are in sorted order (obviously). Since I want to run a binary search on the file, it seems like a real waste ...