fork download
  1. #include<stdio.h>
  2. int main() {
  3. int i = 255;
  4. int *p = &i;
  5. printf("%d",*p);
  6. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
255