solve in C please. Implement the following two functions that get a string, and compute an array of non-empty tokens of the string containing only lower-case letters. For example: ● For a string "abc EFaG hi", the list of tokens with only lower-case letters is ["abc", "hi"]. ● For a string "ab 12 ef hi ", the list of such tokens is ["ab","ef","hi"]. ● For a string "abc 12EFG
solve in C please.
Implement the following two functions that get a string, and compute an array of non-empty
tokens of the string containing only lower-case letters. For example:
● For a string "abc EFaG hi", the list of tokens with only lower-case letters is ["abc", "hi"].
● For a string "ab 12 ef hi ", the list of such tokens is ["ab","ef","hi"].
● For a string "abc 12EFG hi ", the list of such tokens is ["abc","hi"].
● For a string " abc ", the list of such tokens is ["abc"].
● For a string "+*abc!! B" the list of such tokens is empty.
That is, we break the string using the spaces as delimiters (ascii value 32), and look only at the
tokens with lower-case letters only .
1. The function count_tokens gets a string str, and returns the number of
such tokens.
int count_tokens(const char* str);
For example
● count_tokens("abc EFaG hi") needs to return 2.
● count_tokens("ab 12 ef hi") needs to return 3.
● count_tokens("ab12ef+") needs to return 0.
2. The function get_tokens gets a string str, and returns the array with the
tokens containing only lower-case letters in the correct order. The length of the array
should be the number of tokens, computed in count_tokens.
char** get_tokens(const char* str);
For example:
● get_tokens("abc EFaG hi") needs to return ["abc","hi"]
● get_tokens("++a+ b + c") needs to return ["b","c"].
● get_tokens("ab12ef+") needs to return either NULL or an empty array.
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)