fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char *a="aaaa";
  6. char *b="aaab";
  7. int cmp;
  8.  
  9. cmp = strcmp (a,b);
  10.  
  11. printf("%d",cmp);
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
-1