Asha gowda answered Anonymous' question 3/21/2012 Write A C Program To Find The Sum Of 1/1 1/2 1/3 .....1/n? C code It is very easy,just seperate the digits from orginal number and then add it with one another.. Code as follows.. #include void main() { int n,digit,sum=0; printf("enter the number"); scanf("%d",&n); while(I