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

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter14: Files And Streams
Section: Chapter Questions
Problem 17RQ
icon
Related questions
Question

Write a program in C++

Note: Don't use functions. Use character arrays.

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;
Output:
am
a
student
of
PF
in
FAST-NU.
Hint: words are separated by spaces.
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; Output: am a student of PF in FAST-NU. Hint: words are separated by spaces.
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Functions
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,