#include <string.h>
|
|
char *
strpbrk (const char *s, const char *charset); |
#include <string.h>
#include <stdio.h>
int main()
{
char one[50];
char *res;
strcpy(one,"acdb");
res = strpbrk(one, "bc");
if(res != NULL)
printf("%s\n",res);
return 0;
}
Output
cdb
|
© 2007-2009 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user. |
|