Real Time Programmming Question
####Problem Statement
#####Q. Your program should read the contents/words from file "data/para.txt" (see above attached), then it should sort the words as in dictionary and print those alphabetically sorted words.
for eg: Assume the file have the following sentenceThe quick brown fox jumps over the lazy dog, single Quote's hyphen-check.
the program should return
brown
dog,
fox
hyphen-check.
jumps
lazy
over
quick
Quote's
single
the
The
program should be written in c/c++
ps: words are seperated using white space & duplicate words are accepted.