For the following C# code select the relevant solution for conversion of data type.
static void Main(string[] args)
{
int num1 = 20000;
int num2 = 50000;
long total;
total = num1 + num2;
Console.WriteLine("Total is : " +total);
Console.ReadLine();
}
static void Main(string[] args)
{
int num1 = 20000;
int num2 = 50000;
long total;
total = num1 + num2;
Console.WriteLine("Total is : " +total);
Console.ReadLine();
}
A. Compiler will generate runtime error
B. Conversion is implicit type, no error generation
C. Specifying data type for conversion externally will solve the problem
D. None of the mentioned
Answer: Option B
Join The Discussion