MIPI_AdvancedC_FRTK/Lect3/22_2.c

11 lines
227 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <string.h>
//ОШИБКА! Переполнение буфера
int main() {
char str1[] = "This is very big string.";
char str2[15];
strcpy(str2, str1);
puts(str1);
return 0;
}