fork download
  1. #include <stdio.h>
  2.  
  3. int test(char t1[0], char* t2)
  4. {
  5. return sizeof(t1) != sizeof(t2) ? 0 : -1;
  6. }
  7. int main()
  8. {
  9. return test("1","2");
  10. }
Runtime error #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Standard output is empty