fork download
  1. #include <stdio.h>
  2.  
  3. void hui(void *a)
  4. {
  5. int *b = a;
  6. printf("%d\n", *b);
  7. }
  8.  
  9. int main(void) {
  10. char c = 3;
  11. hui(&c);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
75812867