Minor corrections
This commit is contained in:
5
C/p041.c
5
C/p041.c
@ -49,6 +49,11 @@ int main(int argc, char **argv)
|
||||
int count_digits(int n)
|
||||
{
|
||||
int i = 0;
|
||||
|
||||
if(n == 0)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
while(n > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user