A program that counts the number of times a character sequence occurs in another character sequence. Create a function, 'pattern' to do this: int pattern(char *ptr1, char *ptr2) In the main function, declare two character arrays and initialize to the following sequence: '1','1','0','1','0','0','1','1','1','0','1','1','' '1','0','1','' Call the 'pattern' function and pass the first character array as the argument for ptr1, and the second character array as the argument for ptr2. The 'pattern' functions should return the the number of times the first sequence occurs in the second sequence without repeating (which is 2). In the pattern, functions you are not allowed to use brackets [] to dereference the pointers. You must only use pointer arithmetic. Also you are not allowed to hard code the length of the arrays (you must 'sense' when a pointer has reached the end of the array).
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
23 | 24 | 25 | 26 | 27 | 28 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 | 1 | 2 | 3 | 4 | 5 |
Get Free Quote!
382 Experts Online