fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. int main()
  4. {
  5. char a[10]="hello";
  6. strcpy(a,'\0');
  7. printf("%s",a);
  8. return 0;
  9. }
Runtime error #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty