C program to Swap First and Last Digit of a Number

In this tutorial you will learn about the C program to Swap First and Last Digit of a Number and its application with practical example.

C Program to Swap First and Last Digit of a Number

In this tutorial, we will learn to create a C program that will Swap the First and Last Digit of a Number in C programming

Prerequisites

Before starting with this tutorial we assume that you are best aware of the following C programming topics:

  • Operators in C Programming.
  • Basic Input and Output function in C Programming.
  • Basic C programming.
  • Arithmetic operations in C programming.
  • Operators in C programming.

What is swapping?

In swapping we swap the data of two variables or the data in the variable. In this program, we will swap the first and last digits from each other and print the resultant data of that variable.

Algorithm:-

Swapping the First and Last Digit of a Number

In this program first, we will take the input number from the userThen we will separate the digits from that number. And at last, we will print that output number

Let us take the example program from the below code for Swap First and Last Digit of a Number.

Program Code:-

 

Output:-

In the above program, we have first initialized the required variable.

 

  • no = it will hold the integer value.
  • fdigit = it will hold the integer value.
  • ldigit = it will hold the integer value.
  • x = it will hold the integer value.
  • y = it will hold the integer value.
  • sno = it will hold the integer value.
  • flag = it will hold the integer value.

Input Number from the user for the program.

Swapping the First and Last Digit of a Number.

Printing output swapped number.

In this tutorial we have learn about the C program to Swap First and Last Digit of a Number and its application with practical example. I hope you will like this tutorial.