#include<stdio.h> #include<stdlib.h> char *find_char(char const *source_str, char const *desc_str); int main(void) { char *source_str = "ABCDEF"; char *desc_str = "MMD"; char *c = find_char(source_str, desc_str); if(c != NULL) { printf("%c ", *c); } else { printf("IS NULL! "); } return EXIT_SUCCESS; } char *find_char(char const *source_str, char const *desc_str) { if( (source_str == NULL) || (desc_str == NULL) ) { return NULL; } int i = 0; while(*desc_str != '