“realloc in c” Code-Antworten

realloc in c

#include <stdio.h>
int main () {
   char *ptr;
   ptr = (char *) malloc(10);
   strcpy(ptr, "Programming");
   printf(" %s,  Address = %u\n", ptr, ptr);

   ptr = (char *) realloc(ptr, 20); //ptr is reallocated with new size
   strcat(ptr, " In 'C'");
   printf(" %s,  Address = %u\n", ptr, ptr);
   free(ptr);
   return 0;
} 
Smoggy Skipper

C Syntax von Realloc ()

ptr = realloc(ptr, x);
SAMER SAEID

Ähnliche Antworten wie “realloc in c”

Fragen ähnlich wie “realloc in c”

Weitere verwandte Antworten zu “realloc in c” auf C

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen