fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. char str[] = "peace";
  6. char *s = &str;
  7. printf("%s\n", *s);
  8. return 0;
  9. }
Runtime error #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty