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
Will the following code compile and run?
How can I get the ascii code for a character in c#?
Which is the best language for desktop application?
Can abstract class have parameterized constructor?
What is the difference between firstordefault and first?
What are the types of access modifiers?
How to find type of variable?
Which control cannot be placed in mdi?
Explain About Postback
What is JIT (just in time)? how it works?
How to reverse each word in a string using c#?
How string definitions will prevent escaping on backslashes in C#?
What do you know about WM_CHAR message?
What is dictionary class in c#?
How to reduce image resolution in C#?