Question: Assuming that you have initialized the prime array as follows: int primes[]={2,3,5,7,11}; What would be the contents of the array after executing this code: for
Assuming that you have initialized the prime array as follows: int primes[]={2,3,5,7,11}; What would be the contents of the array after executing this code: for (int i = 0; i < 2; i++){ primes[4 - i] = primes[i]; }
2,3,5,3,2
or
11,7,5,7,11
or
2,3,5,7,11
or
11,7,5,3,2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
