#include <stdio.h>

int main()
{
  char x = 'a';
  char y = 'b';
  char z = 'c';

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