fork download
  1. #include <stdio.h>
  2. int main (int argc, char *argv[])
  3. {
  4. int x = 10;
  5. void *p = &x;
  6. printf ("%i\n", *(int *) p);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
10