Write a functin to add two no. Both no can be int, float.
Answer Posted / aaaa
public int fname(int a,int b)
{
int c;
c=a+b;
messagebox.show("answer"+c);
return(c);
}
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
What are c# collections?
What are the advantages of clr procedure over t-sql procedure?
How are delegates chosen?
If you define a user defined data type by using the class keyword, is it a value type or reference type?
What is single dimensional array in c#?
What are sorted lists?
What is class in oops with example in c#?
What is the difference between properties and indexer in c#?
What are destructors in C#?
Is c# and c same?
What is difference between sleep () and wait ()?
Can an array be null c#?
the c# keyword .int. Maps to which .net type?
Name some string escape sequences in c#.
What is stringwriter c#?