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
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started