fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char str_one[] = "#7dj@#8";
  6. char str_two[] = "#7dj@#8";
  7. int cmp;
  8.  
  9. cmp = strcmp(str_one, str_two);
  10.  
  11. if(cmp == 0) {
  12. printf("일치\n");
  13. } else {
  14. printf("불일치\n");
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
일치