InterviewSolution
Saved Bookmarks
| 1. |
19. Initially j is 20 and p is 4, then what will be the value ofp = p* ++j;? |
|
Answer» 84Explanation:4*++20 so It,ll increment first and MAKE it 21 ...21*4 is 84 |
|