Page 1 of 1

What will be the output of the following C# code snippet?

Posted: Wed Jul 13, 2022 7:56 pm
by answerhappygod
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