void main()	
{
    char data temp[]  = "Test1";
    char data temp2[] = "Test2";

    P2 = temp[4];
    strcpy(temp, temp2);
    P2 = temp[4];
    while(1);
}
