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 <stdio.h> int main (int argument c, char *argument v[]) { return 0; }
这段代码是什么意思?它如何转换为其他编码形式?
这是(几乎)最简单的 C/C++ 程序。(它适用于两种语言。)它除了返回 0 之外什么都不做,这表示成功执行。
它应该读
int main(int argc, char **argv)