题目内容
写出下列程序的执行结果是:__________________。#include #includeusing namespace std;int main(){ int array[3] = {1,2,3}; int *p; for(p = array; p < array + sizeof(array) / sizeof(int); ++p) {*p += 2;std::cout << *p; } cout<
查看答案
搜索结果不匹配?点我反馈
更多问题