fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int* mine(int a){
  5. return &a;
  6. }
  7.  
  8.  
  9.  
  10. int main(void) {
  11. int k1=8;
  12. int *pt;
  13. pt=mine(k1);
  14. printf("%d %d \n", &pt, &k1);
  15. float *a, *b;
  16. printf("%d\n", a-b);
  17. float *c = a-b;
  18. printf("%d %d %d", *c, &a, &b);
  19. return 0;
  20. }
  21.  
Runtime error #stdin #stdout 0s 4408KB
stdin
Standard input is empty
stdout
Standard output is empty