For example if the user enters 478 then the result will be printed 19 as 8+7+4 =19. The main source code has been written below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
int sum (int); | |
int s=0; | |
int main() | |
{ | |
int num,x; | |
printf("enter the number whose sum is to be find"); | |
scanf("%d",&num); | |
x=sum(num); | |
printf("the sum of the entered number is %d",x); | |
getch(); | |
} | |
int sum(int n ) | |
{ | |
int r; | |
if (n!=0) | |
{ | |
r=n%10; | |
s=s+r; | |
sum(n/10); | |
} | |
else | |
{ | |
return s; | |
} | |
} | |

0 comments :
Post a Comment