Q. What will be the output of the following C# code?
Code:
using System;
class Program {
static void Main(string[] args) {
String str = "Hello";
Console.WriteLine(str.IndexOf('h'));
}
}
β
Correct Answer: (C)
-1