fork(1) download
  1. #include <stdio.h>
  2.  
  3. int myStrcmp(char s[], char t[]);
  4.  
  5.  
  6. int main(void)
  7. {
  8. char s[100];
  9. char t[100];
  10.  
  11. scanf("%s",s);
  12. scanf("%s",t);
  13.  
  14. myStrcmp(s,t);
  15.  
  16. printf("%d\n",myStrcmp(s,t));
  17.  
  18. }
  19.  
  20.  
  21. int myStrcmp(char s[], char t[])
  22. {
  23. int i;
  24. for(i=0; s[i]!='\0'; i++);
  25.  
  26. int j;
  27. for(j=0; t[j]!='\0'; j++);
  28.  
  29. if(i!=j)
  30. {
  31. return 0;
  32. }
  33.  
  34. else
  35. {
  36. for(int k=0; s[k]!='\0'; k++)
  37. {
  38. if(s[k]!=t[k])
  39. {
  40. return 0;
  41. }
  42.  
  43. }
  44.  
  45. return 1;
  46.  
  47.  
  48. }
  49.  
  50.  
  51. }
Success #stdin #stdout 0s 5284KB
stdin
Hellogani
Hellogachan
stdout
0