What will be the output of the following C# code snippet?
Posted: Wed Jul 13, 2022 7:56 pm
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
a) ove
b) you
c) yo
d) love you