📌  相关文章
📜  void main() { int i = 0; if (i == 0) { printf("你好");继续; } } - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:23.183000             🧑  作者: Mango

代码示例1
8.    What will be the output of the following code? 
#include  using namespace std;
void main()
{ int i = 0; if (i == 0)
{ printf("Hello");
continue;
}
}