Tech Study

C# Program to Swap Values of Two Variables

Introduction

C# Program to Swap Values of Two Variables. This program is compiled and tested on a Visual Studio 2012.

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {           
            int num1;
            int num2;
            int temp;

            Console.WriteLine("Type value of number 1 :");
            num1 = Convert.ToInt32( Console.ReadLine());
            Console.WriteLine("Type value of number 2 :");
            num2 = Convert.ToInt32(Console.ReadLine());

            temp = num1;
            num1 = num2;
            num2 = temp;

            Console.WriteLine("\nAfter swapping values");
            Console.WriteLine("Value of number 1 : "+ num1);
            Console.WriteLine("Value of number 2 : "+ num2);
            Console.ReadKey();
        }
    }
}

Result

C# Program to Swap Values of Two Variables
C# Program to Swap Values of Two Variables

TaggedC++ Program to Swap Values of Two Variables

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more