#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;
}
mrs_empress
onemoo
随时随地看视频慕课网APP
相关分类