What will be the output of the C#.NET code snippet given below?
namespace IndiabixConsoleApplication
{
class SampleProgram
{
static void Main(string[ ] args)
{
int i = 10;
double d = 34.340;
fun(i);
fun(d);
}
static void fun(double d)
{
Console.WriteLine(d + " ");
}
}
}1.10.000000 34.340000
2.10 34
3.10 34.340
4. 10 34.34
Posted Date:-2021-02-24 03:36:42