Copy #include <stdio.h> #include <string.h> int main () { char str[] = "This is a test"; char * pch; pch=strrchr(str,'s'); printf ("Last occurence of 's' ...
確定! 回上一頁