Write a program in C++ and takes the string from the user and only use character arrays. SAMPLE OUTPUT: Input: I am a student of PF in FAST-NU. Output: I am a student of PF in FAST-NU

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 16PE: The implementation of a queue in an array, as given in this chapter, uses the variable count to...
icon
Related questions
Question

Write a program in C++ and takes the string from the user and only use character arrays.

SAMPLE OUTPUT:

Input: I am a student of PF in FAST-NU.

Output:

I

am

a

student

of

PF

in

FAST-NU

Hint: Words are separated by spaces.

Write a program that takes a string as input from the user. Divide the string into tokens/words and print
it.
String: I am a student of PF in FAST-NU.
Tokenizing:
char tempWord[30];
/*always store the word in this array and print it.
e.g. the tempWord will be changed in every iteration
iteration # 1: tempWord = "I\0"
iteration # 2: tempWord "am\0"
iteration: when you find a space in str, it means you have a word to store in tempWord
You need to store the null every time at the last index
*/
cout<<tempWord;
Transcribed Image Text:Write a program that takes a string as input from the user. Divide the string into tokens/words and print it. String: I am a student of PF in FAST-NU. Tokenizing: char tempWord[30]; /*always store the word in this array and print it. e.g. the tempWord will be changed in every iteration iteration # 1: tempWord = "I\0" iteration # 2: tempWord "am\0" iteration: when you find a space in str, it means you have a word to store in tempWord You need to store the null every time at the last index */ cout<<tempWord;
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Algebraic Expressions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning