fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a=10,*j;
  5. j=&a;
  6. printf("%d",*j);
  7. }
  8.  
Runtime error #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
10