fork download
  1. #include <stdio.h>
  2. int main(){
  3. int price = 219;
  4. int vat = 7;
  5. int *x; //declare => pointer variable
  6. int **y; //declare => pointer variable to pointer variable
  7. printf("Price value: %d\n", price); //value of price
  8. printf("&Price Address: %p\n", &price); // memory address of price
  9. printf("*(&price) Value of Price Address: %d\n", *(&price)); //value storing in the price address
  10. printf("---------------------------\n");
  11. x = &price; //x pointer value = address of price
  12. printf("*x pointer value: %d\n", *x);//pointer value giving from &price (%d)
  13. printf("x pointer address: %p\n", x);//pointer address giving from &price (%p)
  14. printf("&x Address: %p\n", &x); //Real address of x
  15. printf("---------------------------\n");
  16. y = &x; //y pointer value = address of x
  17. printf("**y pointer value: %d\n", **y); //pointer value giving from pointer &x (%d)
  18. printf("y pointer address: %p\n", y); //pointer address giving from pointer &x (%p)
  19. printf("&y address: %p\n", &y); //Real address of y
  20. return 0;
  21. }
Success #stdin #stdout 0.03s 26120KB
stdin
Standard input is empty
stdout
#include <stdio.h>
int main(){
int price = 219;
int vat = 7;
int *x; //declare => pointer variable
int **y; //declare => pointer variable to pointer variable
printf("Price value: %d\n", price); //value of price
printf("&Price Address: %p\n", &price); // memory address of price
printf("*(&price) Value of Price Address: %d\n", *(&price)); //value storing in the price address
printf("---------------------------\n");
x = &price; //x pointer value = address of price
printf("*x pointer value: %d\n", *x);//pointer value giving from &price (%d)
printf("x pointer address: %p\n", x);//pointer address giving from &price (%p)
printf("&x Address: %p\n", &x); //Real address of x
printf("---------------------------\n");
y = &x; //y pointer value = address of x
printf("**y pointer value: %d\n", **y); //pointer value giving from pointer &x (%d)
printf("y pointer address: %p\n", y); //pointer address giving from pointer &x (%p)
printf("&y address: %p\n", &y); //Real address of y
return 0;
}