hola necesito un programa que me diga cuantos espacios en blanco hay en una frase por ejemplo
hola me llamo carlos
son 4 espacios en blanco
pero no me sale me pordrian ayudar esto es lo k llevo
#include <stdio.h>
/* cuenta dígitos espacios blancos*/
main()
{
int c, i, nwhite, nother;
int ndigit[19];
nwhite = nother = 0;
for (i = 0; i < 10; ++i)
ndigit = 0;
while ((c = getchar()) != EOF)
if (c >= '0' && c <= '9')
++ndigit[c-'0'];
else if (c == ' ' || c == '\n'
|| c == '\t')
++nwhite;
else
++nother;
printf ("dígitos =");
for (i = 0; i < 10; ++i)
printf(" %d", ndigit);
printf(", espacios blancos = %d, otros = %d\n", nwhite, nother);
}
hola me llamo carlos
son 4 espacios en blanco
pero no me sale me pordrian ayudar esto es lo k llevo
#include <stdio.h>
/* cuenta dígitos espacios blancos*/
main()
{
int c, i, nwhite, nother;
int ndigit[19];
nwhite = nother = 0;
for (i = 0; i < 10; ++i)
ndigit = 0;
while ((c = getchar()) != EOF)
if (c >= '0' && c <= '9')
++ndigit[c-'0'];
else if (c == ' ' || c == '\n'
|| c == '\t')
++nwhite;
else
++nother;
printf ("dígitos =");
for (i = 0; i < 10; ++i)
printf(" %d", ndigit);
printf(", espacios blancos = %d, otros = %d\n", nwhite, nother);
}