```
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <stdlib.h>
void pokeAround(char *pointer) {
// TODO: Write this function!
}
int main(void) {
char oneStr[1024] = "I am string ONE!";
char twoStr[1024] = "I am string TWO!";
pokeAround(&twoStr[0]);
}
Can I get pokeAround()
to find twoStr
only given the pointer to oneStr
?