GTU PPS Program - 20

20. Write a program to find out sum of first and last digit of a given number.

  1. #include<stdio.h>
  2. #include<conio.h>
  3. int main()
  4. {
  5. int num,fd,ld,sum;
  6. printf("\nenter number : ");
  7. scanf("%d",&num);
  8. ld=num%10;
  9. while(num!=0)
  10. {
  11. if(num == ld)
  12. {
  13. fd=0;
  14. break;
  15. }
  16. else
  17. {
  18. fd=num%10;
  19. num=num/10;
  20. }
  21.  
  22. }
  23. sum=fd+ld;
  24. printf("\nSum of first and last digit of given number is %d",sum);
  25. getch();
  26. return 0;
  27. }

sample output

Comments

YouTube

Popular posts from this blog

GTU OS Program - 11 Filters

GTU OOP Program - 18

GTU OS Program - 8