MCQOPTIONS
Saved Bookmarks
| 1. |
How will you free the memory allocated by the following program? #include #define CONDITION(x) printf("letsfindcourse"); int main() { CONDITION(0); return 0; } |
| A. | Runtime Error |
| B. | letsfindcourse |
| C. | Compilation error |
| D. | None of the above |
| Answer» C. Compilation error | |