Niharika IT Solution

BOOK /NOTES/NEWS

Recent Post

Showing posts with label c# program. Show all posts
Showing posts with label c# program. Show all posts

C# program to calculate the sum of two numbers using Function.

using System; public class funcexer3 { public static int Sum(int num1, int num2) { int total; total = num1 + num2; return total; } public s...