Any problem with this code
#include<stdio.h>
/*Counts digits, white numbers, others*/
main()
{
int c, i, nwhite, nother;
int ndigit[10];
nwhite=nother=0;
for(i=0; i<10; ++i)
ndigit[i]=0;
while((c=getchar())!=EOF)
if(c>='0' && c<='9')
++ndigit[c-'0'];
else if(c==' ' || c=='\n' || c=='\t')
++nwhite;
else
++nother;
printf("digits= ");
for(i=0; i<10; ++i)
printf("%d ", ndigit[i]);
printf("\nwhitespace=%d, other=%d\n", nwhite, nother);
}
2 Answers
Top contributors in Uncategorized category
Unanswered Questions
sunwincampos08
Answers: 0
Views: 7
Rating: 0
Dola789 | Nền Tảng Cờ Bạc Số 1 Thị Trường Việt Nam
Answers: 0
Views: 7
Rating: 0
bpmfilmhello88
Answers: 0
Views: 6
Rating: 0
BHPH Jeep Wrangler
Answers: 0
Views: 11
Rating: 0
debetriomon
Answers: 0
Views: 8
Rating: 0
789CLUB
Answers: 0
Views: 7
Rating: 0
bongdaluukcom
Answers: 0
Views: 8
Rating: 0
bongdaluukcom
> More questions...
Answers: 0
Views: 6
Rating: 0