Write the program to find or count the digits sum.

#include<stdio.h> #include<conio.h> void main () {     int num , a , n ;     int sum = 0 ;     printf ( "\nEnter the v...
Read More →