C Exercises: Accepts some text from the user and prints each word of that text in separate line.
C Basic Declarations and Expressions: Exercise-98 with Solution
Write a C program that accepts some text from the user and prints each word of that text on a separate line.
Sample Solution:
C Code:
#include <stdio.h>
int main() {
long nc = 0; // Variable to count characters
int new_l = 0; // Variable to count newlines
int n_word = 0; // Variable to count words
int chr; // Variable to hold input characters
int flag = 0; // Flag to track word boundaries
int last = 0; // Flag to track the last character
printf("Input some text:\n");
while ((chr = getchar()) != EOF) {
++nc; // Increment the count of characters
if (chr == ' ' || chr == '\t') {
flag = 0; // Reset the flag when a space or tab is encountered
} else if (chr == '\n') {
++new_l; // Increment the count of newlines
flag = 0; // Reset the flag on a newline
} else {
if (flag == 0) {
++n_word; // Increment the count of words when a new word begins
}
flag = 1; // Set the flag to indicate a word is in progress
}
if (flag == 0 && last == 0) {
printf("\n"); // Print a newline when a word ends and the last character was not a space
last = 1; // Set last to 1 to indicate the last character was a space
} else {
putchar(chr); // Print the character
last = 0; // Set last to 0 to indicate the last character was not a space
}
}
}
Sample Output:
Input some text: The quick brown fox jumps over the lazy dog The quick brown fox jumps over the lazy dog
Flowchart:

C programming Code Editor:
Previous:Write a C program to replace more than one blanks with a single blank in a input string.
Next: Write a C program that takes some integer values from the user and print a histogram.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join