What will be the contents of the a array after the following
statements are executed?
[8] int a[MaxSize] ={9,2,21,10,12,6,5,8,17};
int *p=&a[0],*q;
q = p+MaxSize-1;
; int solution = 0;
while(p<=q)
{
solution += *p%2 == 0?
*p: 0; p++;
}
What will be the contents of the a array after the following statements are executed? [8] int a[MaxSize] ={9,2,21,10,12,
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What will be the contents of the a array after the following statements are executed? [8] int a[MaxSize] ={9,2,21,10,12,
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!