fork(1) download
  1. #include <cstdio>
  2. #pragma GCC diagnostic warning "-fpermissive"
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. void* x = &main;
  8. int* c = (int*)x;
  9. for (int i = 0; i < 10; ++i) {
  10. printf("%x ", *c);
  11. fflush(stdout);
  12. ++c;
  13. }
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
4244c8d fff0e483 8955fc71 bb5153e5 8048410 26748d ff08ec83 4c38333 485e068 ffc6e808