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
What is get set in c#?
List down the reason behind the usage of c# language.
What does namespace mean?
What are the three types of operators?
What does assert() do in c#?
Where value types are stored in c#?
Is string value type c#?
Can we create instance of private class in c#?
What is yield keyword?
State the top.NET class that everything is derived from?
What is difference between list and dictionary in c#?
Define assert() method? How does it work?
Why do we use interface in c#?
What are regular expressions? Search a string using regular expressions?
What are the advantages of constructor?