class Program
{




void add()
{
int x=10, y=20;
fun();
Console.WriteLine("{0}", sum);

}

void fun()
{
int sum;
sum = x + y;

}
static void Main(string[] args)
{
Program f =new Program();
f.add();

}
}

Debug above program.....

Answer Posted / anandraj

class Program
{





void add()
{
int x = 10, y = 20,sum;
fun(x,y,out sum);//changing the parameters
Console.WriteLine("{0}", sum);

}

void fun(int x,int y,out int sum)//changing the
parameter and using out keyword
{

sum = x + y;

}
static void Main(string[] args)
{
Program f = new Program();
f.add();

}

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between namespace and class?

619


How is exception handling implemented in c#?

759


What is asenumerable in c#?

665


What is linq c#?

666


Can you explain template pattern?

735


Define thread?

746


what are the differences between a class and structure

733


Why do we parse in c#?

613


Is linkedhashset synchronized?

796


When would you use generics in your code c#?

661


What are virtual classes in c#?

718


What is the difference between disposing of () and finalize() methods in c#?

717


What is Wrapper class in dot net?

804


What are c# attributes and its significance?

696


Can we inherit static class in c#?

665