fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5.  
  6. const char* str1 = "Hello";
  7. char str2[] = { 'H','e','l','l','o','\0' };
  8.  
  9. printf("%s\n", str1);
  10. printf("%s\n", str2);
  11.  
  12. if(strcmp(str1,str2) == 0)
  13. {
  14. printf("sao iguais");
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
Hello
Hello
sao iguais