+ 1
Why My Code of Gapful No. is Showing "No Output"?
Pls help debugging my Code...đ˘ https://code.sololearn.com/cMz8aaSpvTN1/?ref=app
5 Answers
+ 2
Many errors
1. To find out no.of digits, input(n) is divided by 10, then the same input is used in further calculation which will cause calculation error.
Copy input to some other temporary variable which can be used in further calculation later on
2. Use of conio. Conio.h is not supported by sololearn compilers.
Remove all traces of conio
3. Check out the if and else part, there'e is some problem
+ 2
Priyesh Arya your still getting division by zero.
Inside the while loop you are changing the value of n.
After the while loop n = 0;
+ 1
You are getting division by zero in line 20!
+ 1
Yup Got It....
Now Its working ....
Thank U Buddy...đđ
0
Yup, Fixed it as Mentioned by You Guys....
(*Fixed Line 20 issue
* Fixed conio.h issue
* Fixed same Variable issue )
And Added an Example also to understand the Logic of my Code...
đ
Still It shows No Output....
Check It Again Pls...!!đ˘