/
githubmirror
/
CPlusPlusThings
Обзор
Документация
Войти
/
githubmirror
/
CPlusPlusThings
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
codingStyleIdioms/3_RAII/c_example.cpp
19 строк
374 B
Light-City
update
12 дек 2019, 11:09
12 дек 2019, 11:09
4f149ee
Код
Авторство
О чём код?
// // Created by light on 19-12-12. // #include <stdio.h> #include <string.h> #include <malloc.h> int main() { char *str = (char *) malloc(7); strcpy(str, "toptal"); printf("char array = \"%s\" @ %u\n", str, str); str = (char *) realloc(str, 11); strcat(str, ".com"); printf("char array = \"%s\" @ %u\n", str, str); free(str); return(0); }