106 : Program to find number of spaces in entered String.

Check out the complete list of c-programs : C Program List    












/*
 ============================================================================
 Name        : C-Programming
 Author      : Code2care
 Version     : 1.0
 Copyright   : Code2care.org
 Description : 106 : Program to find number of spaces in entered String.
 ============================================================================
 */

#include 
#include 

int main(void) {

	int ch, space=0;

printf("Enter a string (add ~ sign to exit input mode) : \n");


	while ((ch = getchar()) != '~')
		if (ch == ' ')
			++space;

	printf("Number of Spaces in the Text : %d", space);


return 0;
}










The best way to learn C programming is to practice more and more of programs . Code2care C Programming tutorials provide 1000+ programs in C that you can study and become an expert in the language. Programs are divided into categories depending upon type and complexity.

BSc. IT, BSc. Computer Science, BSc. IT, MSc. IT, MSc. Computer Science, MCA, BTech IT & BTech Engineers may find these programs very useful.