Code Snippets C

#include
int main(void)
{
char str[80];
int j, spaces;
printf("Enter a string: ");
gets(str);
spaces = 0;
for( j = 0; str [ j ]; j++)
if(str[j]==' ')
spaces++;
printf("Number of spaces: %d", spaces);
return 0;
}