#include <stdio.h>
#include <string.h>
int main(){
  char month[100];

  strcpy(month, "Dec");		/* correct order */
  printf("month=%s \n", month);
  printf("\"ember\"=%s\n",  "ember");
  strcpy("ember", month);	/* wrong order! */
  printf("month=%s \n", month);
  printf("\"ember\"=%s\n",  "ember");

  return 0;
}

