C program to print First Digit of Number

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

C Program to print First Digit of a Number

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

Prerequisites

Before starting with this tutorial, we assume that you are the 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 are the digits in the number?

The number of integers in a number is called its digits. A number is said to be a single-digit number when it is between 0 and 9. Hence, the number is said to be a 4-digit number when it is between the range of 1000 and 9999. in c programming, we can print the first and last digit from the number with the help of a small program.

Algorithm:-

Printing the First 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 the first last digit of the number.

Let us take the example program from the below code for printing the First 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.
  • Count = it will hold the integer value.

Input Number from the user for the program.

Finding the First Digit of a Number.

Printing output first and the last digit.

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