Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
TEST C COURSE CHAPTER | TEST C COURSE SECTION
TEST C COURSE
course content

Contenido del Curso

TEST C COURSE

TEST C COURSE

TEST C COURSE CHAPTER

c

main

copy
123456789101112131415161718192021
#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?

Sección 1. Capítulo 1
We're sorry to hear that something went wrong. What happened?
some-alt