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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more