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.
在 linux 和 windows 上有 b/w gcc 的区别吗例如:
#include<stdio.h> main() { int i=5; printf("%d %d ",++i,++i); }
在 Windows 上是6 5在 Linux 上是7 7