I have the two string array name str_arr1[],str_arr2[]. The two array having same or different value.
str_arr1[] = { "one", "two", "three","four","Doctor","Engineer","Driver" };
str_arr2[] = { "one", "Doctor","Engineer" };
Usually str_arr1[] having more record compare to str_arr2[]. I want to check the str_arr1[] having str_arr2[]. If it's true means return true. Otherwise return false.