#include <stdio.h> #include <string.h> int main(void) { char s[] = "Make hay while the sun shines."; char t[] = "iou"; char *test; test = strpbrk(s, ...
確定! 回上一頁