Q38
What will be the output of the following C# code? static void Main(string[] args) int i = 0; int j = 0; for (i = 0; i 1) continue; Console.WriteLine("Hi "); Console.ReadLine();
A.
Prints hi 4 times
B.
Prints hi 3 times
C.
Prints hi 6 times
AnswerD.
Prints hi infinite times
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board