Tag: examples
C# Program to swap two numbers
Problem Write a program in C# to swap two numbers using temporary variable and display the result in the console window. How to swap two numbers in C# and display it in the Console ? Output Abundantcode.com coding sample Enter the First Number : 25 Enter the Second Number : 87 First Number is 87 Second Number is 25
C# Program to swap two numbers without using temporary variable
Problem Write a program in Visual CSharp to swap two numbers using temporary variable and display the result in the console window. How to swap two numbers in C# without using temporary variable ? Output Abundantcode.com coding sample Enter the First Number : 45 Enter the Second Number : 67 First Number is 67 Second Number is 45
C# Program to display "Hello, World!"
Problem Statement Write a program in Visual C# to print Hello World in the console Window. How to display Hello World in C# ? Output Hello, World!
C# Program to print the sum of two numbers
Problem Write a program in C# to add two numbers and display the result in copnsole window. How to print the sum of two numbers in C# ? Output Abundantcode.com coding sample 35
C# Program to find the ASCII Value of a Character
Problem Write a program in Visual C# to find the ASCII value of the input character. How to find the ASCII value of a character in C# ? Output Abundantcode.com coding sample Enter a character : A 65