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
What is the difference between namespace and class?
How is exception handling implemented in c#?
What is asenumerable in c#?
What is linq c#?
Can you explain template pattern?
Define thread?
what are the differences between a class and structure
Why do we parse in c#?
Is linkedhashset synchronized?
When would you use generics in your code c#?
What are virtual classes in c#?
What is the difference between disposing of () and finalize() methods in c#?
What is Wrapper class in dot net?
What are c# attributes and its significance?
Can we inherit static class in c#?