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
What's the difference between an integer and int?
How big is an int16?
What is callback delegate in c#?
What is the difference between static class and singleton class in c#?
Define collections?
What is lazy loading c#?
Is lazy thread safe c#?
What is a method signature?
how to print invert pyramid in c#
What does convert toint32 mean?
i want o/p 011242110 in c# code.
What is JIT (just in time)? how it works?
What is the difference between list and array in c#?
What is global asax in c#?
What is the base class from which all value types are derived?