The output of the program is:
The main source code for the above program is:
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 main() | |
{ | |
int sum=0,n,r; | |
printf("enter any number\n"); | |
scanf("%d",&n); | |
do | |
{ | |
sum=0; | |
while(n!=0) | |
{ | |
r=n%10; | |
sum=sum+r; | |
n=n/10; | |
} | |
n=sum; | |
}while(n>9); | |
printf("\n the required result is=%d",n); | |
getch(); | |
} |
0 comments :
Post a Comment