1.

What will be the output of the given 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
D. Love you
Answer» D. Love you


Discussion

No Comment Found