fork(2) download
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main(void)
  4. {
  5. char a[50], b[40];
  6. gets(a);
  7. gets(b);
  8. if (strstr(a, b) != NULL)
  9. printf ("Y\n");
  10. else
  11. printf ("N\n");
  12. return 0;
  13. }
Success #stdin #stdout 0s 2252KB
stdin
techtrishna online event
onlin
stdout
Y