Question: Write a c program function Simple, given a string of words, return the length of the shortest word(s). String will never be empty and you

Write a c program function

Simple, given a string of words, return the length of the shortest word(s).

String will never be empty and you do not need to account for different data types.

#include #include

ssize_t find_short(const char *s)

{

}

Sample output

cr_assert_eq(find_short("bitcoin take over the world maybe who knows perhaps"), 3l); cr_assert_eq(find_short("turns out random test cases are easier than writing out basic ones"), 3l); cr_assert_eq(find_short("lets talk about C the best language"), 1l); cr_assert_eq(find_short("i want to travel the world writing code one day"), 1l);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!