MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following statements are correct about the following program?#include <studio.h>int main ( ){ printf ("%p n", main); return 0;} |
| A. | It prints "main" infinite number of times. |
| B. | It runs an infinite loop without printing anything. |
| C. | Compiler report an error since main() cannot be called recursively. |
| D. | Address of main( ) would get printed infinite number of times. |
| E. | Address of main( ) would get printed once. |
| Answer» F. | |