pastebin

Paste Search Dynamic
Recent pastes
value of y
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.    int *x;
  5.     {                          
  6.         int y = 42;
  7.         x = &y;
  8.         printf("n %x n", y);
  9.     }                          
  10.  
  11.     printf("The value of y is %d.", *x);
  12.     printf("n%x", x);
  13.     printf("n%x", *x);
  14.         return 0;
  15. }
Parsed in 0.102 seconds