You have a 2-D input array of characters. You need to find whether a given string can be found in the array . Write a program to do it
Examples:
1. search 'computer' in
{'c','o','m','p','u'},
{'c','o','m','t','u'},
{'c','o','e','e','u'},
{'c','r','m','f','u'},
{'c','o','m','p','u'},
{'c','o','m','p','u'},
returns TRUE;
2. 1. search 'computer' in
{'c','o','m','p','u'},
{'c','o','m','t','u'},
{'c','o','e','e','u'},
{'c','o','m','f','u'},
{'c','o','m','p','u'},
{'r','o','m','p','u'},
returns FALSE;