Page 1 of 1

For the given set of C# code, is conversion possible?

Posted: Wed Jul 13, 2022 7:56 pm
by answerhappygod
static void Main(string[] args) { int a = 76; char b; b = (char)a; Console.WriteLine(b); Console.ReadLine(); }
a) Compiler will generate runtime error
b) Conversion is explicit type
c) Compiler will urge for conversion from ‘integer’ to ‘character’ data type
d) None of the mentioned