C Program to find the sum of digits of the number entered.

C Program to find the sum of digits of the number with full explanation of the program. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() {           int n,s;      ...