InterviewSolution
Saved Bookmarks
| 1. |
Iv) Have a look at the following piece of code, state and explain the output. #include int fun(){ static int i; i++; return i;}int main(void) { // your code goes here int a[5] = {1, 2, 3, fun(), 5}; printf("%d", a[3]); return 0;} |
| Answer» RTK MAN ..... PLZ MARK BRAINLIST | |