C Program to find sum of all digits of number

Here is the C program to find the sum of all digits of number. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() {        int n,s;           clrscr();  ...