GATE | GATE-CS-2000 | Question 43
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: (A)
Explanation: See question 2 of https://www.geeksforgeeks.org/c-language-set-1/
Quiz of this Question
Please Login to comment...