CPlusPlusThings/codingStyleIdioms/3_RAII/c_example.cpp
Light-City 4f149eec72 update
2019-12-12 16:09:55 +08:00

19 lines
374 B
C++

//
// 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);
}