fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main()
  4. {
  5. char str1[]="hello";
  6. char str2[]="hello";
  7. if(strcmp(str1, str2) == 0)
  8. puts("equal");
  9. else
  10. puts("unequal");
  11. return 0;
  12. }
Success #stdin #stdout 0s 4472KB
stdin
Standard input is empty
stdout
equal