fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. typedef void* str_t;
  5.  
  6. str_t func() {
  7. return "fuck";
  8. }
  9.  
  10. int main(void) {
  11. // your code goes here
  12. str_t *str = func();
  13. printf("what the %s",str);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
what the fuck