Assign to ptr the location of the first occurrence in s1 of any character from s2.
What will be an ideal response?
```
ptr = strpbrk(s1, s2);
```
Computer Science & Information Technology
You might also like to view...
By default the Quick Access Toolbar displays above the Ribbon in Office 2010
Indicate whether the statement is true or false
Computer Science & Information Technology
Are the following two declarations the same
``` char city[8] = "Dallas"; char city[] = "Dallas"; ``` A. no B. yes
Computer Science & Information Technology