We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exercise 6.24: Explain the behavior of the following function. If there are problems in the code, explain what they are and how you might fix them.
void print(const int ia[10]) { for (size_t i = 0; i != 10; ++i) cout << ia[i] << endl; }
这个代码可以成功运行, 为什么说它不能成功运行?
The text was updated successfully, but these errors were encountered:
我也觉得,提出同款疑问
Sorry, something went wrong.
No branches or pull requests
Exercise 6.24: Explain the behavior of the following function. If there are problems in
the code, explain what they are and how you might fix them.
这个代码可以成功运行, 为什么说它不能成功运行?
The text was updated successfully, but these errors were encountered: