
#include "string.h"

char    buf[255]="first";
char    buf2[255]="second";
void main ( void )
{
    while(1)
    {
        strcpy(buf,buf2);
    } // end of while
} // end of main

