Q75
What will be the output of the following C# code snippet? static void Main(string[] args) String c = "Hello i love you"; String a ; a = c.Substring(12, 3); Console.WriteLine(a); Console.ReadLine();
A.
ove
B.
you
C.
yo
AnswerD.
love you
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board