fork download
  1. #include <assert.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. assert(sizeof(void*) == sizeof(char*));
  7. assert(sizeof(void*) == sizeof(int*));
  8. puts("hello world!");
  9. return 0;
  10. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
hello world!