fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. int a=1, b=3, c=5;
  8.  
  9. int *p1=&a, *p2=&b, *p=&c;
  10.  
  11. *p=*p1*(*p2);
  12.  
  13. printf("%d\n",c);
  14.  
  15. }
  16.  
  17.  
Success #stdin #stdout 0s 5320KB
stdin
45
stdout
3