a) for (i = n; i>0; i–)
b) for (i = n; i >= 0; i–)
c) for (i = n-1; i>0; i–)
d) for (i = n-1; i>-1; i–)
Which for loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Which for loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!