c realloc
/*prototype of realloc*/
void *realloc(void *ptr, size_t newsize);
/*use*/
dyn_array = realloc(dyn_array, (dyn_array_size + 1) * sizeof(int));
/*
adds one more space to dyn_array
you need stdlib.h for this
*/
c realloc
/*prototype of realloc*/
void *realloc(void *ptr, size_t newsize);
/*use*/
dyn_array = realloc(dyn_array, (dyn_array_size + 1) * sizeof(int));
/*
adds one more space to dyn_array
you need stdlib.h for this
*/
realloc in c
#include <stdio.h>
int main () {
char *ptr;
ptr = (char *) malloc(10);
strcpy(ptr, "Programming");
printf(" %s, Address = %un", ptr, ptr);
ptr = (char *) realloc(ptr, 20); //ptr is reallocated with new size
strcat(ptr, " In 'C'");
printf(" %s, Address = %un", ptr, ptr);
free(ptr);
return 0;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us