Question:What will be the output of the following Main program in a C# console application (Assume required namespaces are included):
static void Main(string[] args){
            int @int = 15;
            Console.WriteLine(@int);
            Console.ReadLine();
}
 

A 15 

B It will throw a compilation error. 

C It will throw an error at runtime. 

D @15 

+ Answer
+ Report
Total Preview: 945

Copyright © 2024. Powered by Intellect Software Ltd