Page 1 of 1

Write C code for char * exclude(const char * str1, const char * str2). This function will return a string consisting of

Posted: Sun Jul 03, 2022 10:00 am
by answerhappygod
Write C code for char * exclude(const char * str1, const char *str2). This function will return a string consisting of allcharacters in str1 unless they are included in str2. For example,if str2 is "a!f" and str1 is "What a beautiful day!", this functionwould return "Wht beutiul dy". You are not allowed to use anylibrary functions.
Share a screenshot of output.