fork download
  1. #include<stdio.h>
  2.  
  3. int main(){
  4. int i=10;
  5. int j=20;
  6. int *k=&i;
  7.  
  8. scanf("90",k);
  9. printf("%d,%d,%d\n",i,j,*k);
  10. return 0;
  11. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
10,20,10