Contenido del Curso
TEST C COURSE
TEST C COURSE
TEST C COURSE CHAPTER
main
#include <stdio.h> #include <stdlib.h> #include <string.h> int main () { char *str; /* Initial memory allocation */ str = (char *) malloc(15); strcpy(str, "tutorialspoint"); printf("String = %s, Address = %u\n", str, str); /* Reallocating memory */ str = (char *) realloc(str, 25); strcat(str, ".com"); printf("String = %s, Address = %u\n", str, str); free(str); return(0); }
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 1