Computer Science, asked by kumarutsav8827, 1 year ago

C program that reads a floating point no. Then displace the rightmost digit of the integral part of the number

Answers

Answered by Swaggirl44
3

Answer:

C program for no.Of days remaining in a year for the given date and month of a year

Answered by Anonymous
3

int main()

{

float num;

int x;

scanf("%f",&num);

x=(int)num;

printf("%d",x%10);

return 0;

}

Similar questions