MCQOPTIONS
Saved Bookmarks
| 1. |
The value of j at the end of the execution of the following C program. int incr (int i) { static int count = 0; count = count + i; return (count); } main () { int i,j; for (i = 0; i <=4; i++) j = incr(i); } |
| A. | 10 |
| B. | 4 |
| C. | 6 |
| D. | 7 |
| Answer» B. 4 | |