0 of 1 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include <iostream> using namespace std; const int MAX = 3; int main (){ int var[MAX] = {10, 100, 200}; int *ptr; ptr = var; int n=0; while ( ptr <= &var[MAX - 1] ){ n=n+*ptr; ptr++; } cout<<n; return 0; } |
以上程序输出结果为