Q. What will be output of the following conversion ?static void Main(string[] args){char a = 'A';string b = "a";Console.WriteLine(Convert.ToInt32(a));Console.WriteLine(Convert.ToInt32(Convert.Tochar(b)));Console.ReadLine();} (Solved)
1. 1, 97
2. 65, 97
3. 65, 97
4. 97, 1
- c. 65, 97