6 points Question 1(b): What will be the value of b, c, and d after executing the following piece of codes? Show steps o
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
6 points Question 1(b): What will be the value of b, c, and d after executing the following piece of codes? Show steps o
Question 1(b): What will be the value of b, c, and d after executing the following piece of codes? Show steps of your findings. int a [ ] = { 2, 3, 6, 1, 9,5}; int i = 2,b,c,d; b = ++a; C = a[i++]; d = a;
6 points