MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code ? static void Main(string[] args) { m(); Console.ReadLine(); } static void m() { Console.WriteLine("HI"); m(); } |
| A. | HI HI HI |
| B. | HI |
| C. | Stack overflow exception |
| D. | Compile time error |
| Answer» D. Compile time error | |