#include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.h> int main(){ char (*s)[1000]; char *p; char *bob; int length; scanf("%s",s); bob=(const char *)malloc(sizeof(s)); p=strchr(s,'a'); if(p) printf("%s",p); else printf("Not Found!"); return 0; }
onemoo
相关分类