Computer Science, asked by ImRitz9683, 11 months ago

Program tp find difference between first and digits of a a number in c

Answers

Answered by devanshchoudhary17mc
3

Answer:

#include <stdio.h>

main()

{

int num, last ;

printf("Enter any number : ");

scanf("%d", &num);

last = num%10;

printf("The last digit of entered number: %d\n", last);

Answered by Anonymous
1

Answer:

#followme

#markasbrainlist

...

Similar questions