Write a functin to add two no. Both no can be int, float.
Answer Posted / mithun
public double Add(double a, double b)
{
double c =a + b;
return c;
}
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
Explain dataset.acceptchanges method in .net?
Can we inherit a private class in c#?
What is global asax in c#?
What does the initial catalog parameter define in the connection string?
Can we make a class private in c#?
What are the different types of assembly?
How will you get the different language strings?
How long has c# been around?
What is a shared assembly?
Is namespace a class?
What is CLR and its application.?
Why do we use overloading in c#?
What namespace is list in c#?
Why is main static in c#?
What does string intern do?