String C

#include 
#include 
int main(void)
{
  char *p;
  p = strchr("this is a test", ' ');
  printf(p);
  return 0;
}