MIPI_AdvancedC_FRTK/Lect2/24.c
2024-11-14 08:45:50 +03:00

11 lines
118 B
C

#include <stdio.h>
int main(void)
{
int *p1, p2;
int n = 30;
p1 = &n;
p2 = &n; // ОШИБКА
return 0;
}