📅  最后修改于: 2022-03-11 14:56:23.183000             🧑  作者: Mango
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;
}
}