Wap to enter a three digit number and print each digit separately
Answers
Answered by
1
Answer:
Mark me as brainliest
Explanation:
C Program to accept a three digit number & print the sum of individual digits of Given Numbers
# include <stdio.h>
# include <conio.h>
main( )
{
int a,b,c,n, sum;
clrscr( );
printf (“ Enter a Three Digit Number:“);
scanf (“%d”,&n);
Similar questions