Home » C# Programming » Functions and Subroutines

If a function fun() is to receive an int, a Single & a double and it is to return a decimal then which of the following is the correct way of defining this function?

Correct Answer: static decimal fun(int i, Single j, double k) { ... }

← Previous Question Next Question→

More Questions from Functions and Subroutines

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion