fork download
  1. // Question:03 Print it !!
  2.  
  3. #include <stdio.h>
  4.  
  5. int main()
  6. {
  7.  
  8. int a, b;
  9. int *ptrX, *ptrY;
  10.  
  11. scanf("%d %d", &a, &b);
  12.  
  13. ptrX = &a;
  14. ptrY = &b;
  15.  
  16. printf("%d %d", *ptrX, *ptrY);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5532KB
stdin
5 10
stdout
5 10