MCQOPTIONS
Saved Bookmarks
| 1. |
Int fun (char c) { int i; static int y; } |
| A. | c, i are stored in stack and y stored in global memory space |
| B. | c stored in stack and i, y are stored in global memory space |
| C. | c is stored in text segment, y in global memory space and i in stackD.none of these |
| Answer» B. c stored in stack and i, y are stored in global memory space | |