Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~407 People Reached
Favorite Forums
Favorite Tags
c x 3
c++ x 1
Member Avatar for dammest
Member Avatar for dammest

Implement the filters: longLines, linesWith. The filters have similar structure. They accept one parameter from the command line (length limit or a string of characters) and then read, one by one, all lines from the standard input. Each line is tested. The only difference consists in different functions used to …

Member Avatar for WaltP
0
108
Member Avatar for dammest

Write a program that counts the number of occurrences of selected words in standard input. Remarks: • The selected words are given as command line parameters. • The program should print out the words with their number of occurrences. Use following definition: typedef struct { char * word; unsigned int …

Member Avatar for Ancient Dragon
0
68
Member Avatar for dammest