fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. char array[2] = "X";
  6. char *ptr = "X";
  7. if(!strcmp(array, ptr))
  8. printf("The Same.\n");
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
The Same.