#include <stdio.h>

int main()
{
  int  x = 1;
  char y = 'a';
  int  z = 2;

  /**********************************************
   * Uncomment the following lines to see the   *
   * actual memory addresses of these variables *
   *********************************************/
  //printf( "int  x is at: %p\n\r"
  //        "char y is at: %p\n\r"
  //        "int  z is at: %p\n\r", &x, &y, &z );

  return 0;
}