C program to find the product of the first digit and last digit in a number

In this video, we are going to understand and implement a simple C program, to find the product of the first digit and the last digit in the given number. So, if we are given the number 76543, then the product of the first digit and last digit comes out to be 21, which is 7 x 3. In this program, we just need to get the first, and the last digit from the given number, and then just calculate their product.

C program to find the product of the first digit and last digit in a number

 I hope you find this video ‘C program to find the product of first digit and last digit in a number’ helpful for you…