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 / nvk

The Variable Sum Is Not defined

Is This Answer Correct ?    1 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is get set in c#?

739


List down the reason behind the usage of c# language.

857


What does namespace mean?

683


What are the three types of operators?

676


What does assert() do in c#?

730


Where value types are stored in c#?

673


Is string value type c#?

654


Can we create instance of private class in c#?

666


What is yield keyword?

665


State the top.NET class that everything is derived from?

702


What is difference between list and dictionary in c#?

635


Define assert() method? How does it work?

806


Why do we use interface in c#?

665


What are regular expressions? Search a string using regular expressions?

685


What are the advantages of constructor?

603