Write a functin to add two no. Both no can be int, float.
Answer Posted / gopathi vamseedhar
public int fname(int a,int b)
{
int c;
c=a+b;
messagebox.show("answer"+c);
}
Is This Answer Correct ? | 5 Yes | 11 No |
Post New Answer View All Answers
Explain About Assembly in .NET, types of assemblies, their difference, How to register into GAC. How to generate the strong names & its use.
Is inheritance possible in c sharp?
Explain the difference between const and static read-only?
What is the use of convert toint32 in c#?
What are console applications used for?
What are fields in c#?
What is a private class in c#?
How to declare a property in a class?
What is the difference between int.parse and int.tryparse methods?
What is sorted list in c#?
What debugging tools come with the .NET ssSDK?
Can a sealed class be used as a base class?
How long has c# been around?
What is expression tree with example?
Are there constructors in c sharp?