MIPI_AdvancedC_FRTK/Lect2/34.c

17 lines
404 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
struct st { char s[10]; } t1, t2;
strcpy (t1.s, "Hello ");
t2 = t1;//память будет скопирована
printf ("%s", t2.s);
strcpy (t1.s, "world!");
printf ("%s", t2.s);//не поменялась
printf ("%s", t1.s);//поменялась
printf ("%s", t2.s);
return 0;
}