MCQOPTIONS
Saved Bookmarks
| 1. |
output of following program #include<stdio.h> int f1( int ); void main() { int b=5; printf("%d,%d", f1(b),f1(b)); } int f1(int b) { static int n=5; n++; return n; } |
| A. | 6,6 |
| B. | 6,7 |
| C. | 7,6 |
| D. | 5,6 |
| Answer» D. 5,6 | |