gloriousleader
#include?"stdio.h"
#include?"string.h"
int?main()
{
char?p[]="glorious",q[]="leader",t[9];
strcpy(t,p);
strcpy(p,q);
strcpy(q,t);
printf("change?after1:\n");
puts(p);
puts(q);
return?0;
}
#include?"stdio.h"
#include?"string.h"
int?main()
{
char?p[]="glorious",q[]="leader",t[9];
strcpy(t,p);
strcpy(p,q);
strcpy(q,t);
printf("change?after1:\n");
puts(p);
puts(q);
return?0;
}