fork download
  1. #include <stdio.h>
  2.  
  3. int func()
  4. {
  5. return(printf("Hello world"));
  6. }
  7.  
  8. int main()
  9. {
  10. printf("%zu",sizeof(func));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
1