Digit In Tenth Position

The program must accept a positive integer N and print the digit in the tenth position.


Input Format:
The first line denotes the value of N.
Output Format:
The first line contains the value of N.


Boundary Conditions:
10 <= N <= 9999999

Example Input/Output 1:
Input:
20
Output:
2

Example Input/Output 2:
Input:
37843
Output:
4

#include<stdio.h>
#include <stdlib.h>
int main()
{
int n,c;
scanf("%d",&n);
c=(n/10)%10;
printf("%d",c);
}

Previous Article

Cyclic Shift

Next Article

Adam number

Write a Comment

Leave a Comment

Your email address will not be published. Required fields are marked *