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.
找不到问题,有大神解决吗?
代码
#include <algorithm> int main(int argc, char* argv[]) { return 0; }
警告
extra tokens at end of #include directive [enabled by default]
查看上面引用的代码,使用od -c给出以下输出:
od -c
0000000 # i n c l u d e < a l g o r i 0000020 t h m > 342 200 216 \n i n t m a i n 0000040 ( i n t a r g c , c h a r * 0000060 a r g v [ ] ) { \n r 0000100 e t u r n 0 ; \n } \n
注意 the>和\n: 之间的字节,您可能想要摆脱它们。
>
\n