- 2
Write a program to enter the 8 digit number through keyboard and print the sum of all digits.
Please help me guys in this question tell me answer in c language.
12 Answers
+ 17
âș In C, normal int can store values in the range of -32,768 to 32,767. But you need an 8 digit number, so we have to use unsigned long int as our data type whose range is 0 to 4,294,967,295.
âș So declare a number using unsigned long int and take the user input scanf("%lu",&num); // %lu is the format specifier for unsigned long int
âș Then extract individual digits from the number using modulus (%) operator and keep adding the digits in another variable called sum.
âș You can use a loop till the number is zero, take a digit, add it to sum and divide the number by 10, so that the digit which is added is removed from the number.
âș At the end, display your result which is in sum.
+ 13
Sure, everybody is ready to help to solve your doubts. But for help you need to show what all have you coded, where have you struck, what you don't understand. Show your attempt or else everyone will consider you want ready made solution and no one will be able to help !!
+ 13
Yes the program is completely correct đ, just the problem is of ASCII codes of blank space
+ 12
Hello, đ
If you need help you can post the code you are struggling with!
 ⹠SEARCH for similar QUESTIONS or ANSWERS before posting
 ⹠Include relevant TAGS
Do not ask someone else to do it for you!!?
 ⹠https://www.sololearn.com/post/75089/?ref=app
 ⹠https://code.sololearn.com/WvG0MJq2dQ6y/
+ 12
It shows some error when compiled. It is /302 error. This generally occurs due to copy and paste of code from somewhere. You had ASCII codes copied that add spaces, etc to your code. This can be removed by going through each identified line and remove any extra spaces at the beginning and end of any identified line.
I just removed the space from lIne 4 and 12 of your code. The logic part is the correct, just those unnecessary blank spaces caused these errors.
See the result after removing those spaces :
https://code.sololearn.com/c6xxSOAk23dD/?ref=app
+ 2
Please don't ask other people to do your homework for you. Show your own attempt.
+ 1
Keval ya rha mera code
#include <stdio.h>
Â
void main()
{
long num, temp, digit, sum = 0;
Â
printf("Enter the number \n");
scanf("%ld", &num);
temp = num;
while (num > 0)
{
digit = num % 10;
sum = sum + digit;
num /= 10;
}
printf("Given number = %ld\n", temp);
printf("Sum of the digits %ld = %ld\n", temp, sum);
}
+ 1
Is it correct?
+ 1
Ok bro means it is right only I have to remove the spaces
+ 1
Ok bro thanks
- 2
Bro can you please write the code I need your help