Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,以下代码段在 B 中是否合法?
int main() { auto i; for (i = 0; i < 5; i++) { auto x; // Is this legal? } }