Search
 
SCRIPT & CODE EXAMPLE
 

C

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
*/
Comment

realloc in c

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

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

realloc in c

void *realloc(void *ptr, size_t size)
Comment

Realloc in C language

#include <stdio.h>
#include <stdlib.h>
int main()
{
int *ptr = (int *)malloc(sizeof(int)*2);
int i;
int *ptr_new;
	
*ptr = 10;
*(ptr + 1) = 20;
	
ptr_new = (int *)realloc(ptr, sizeof(int)*3);
*(ptr_new + 2) = 30;
for(i = 0; i < 3; i++)
	printf("%d ", *(ptr_new + i));

getchar();
return 0;
}
Comment

PREVIOUS NEXT
Code Example
C :: Hello world in C programming language 
C :: C Passing string to a Function 
C :: directory folders structure show windows 10 command prompt 
C :: limit axis in one direction plt 
C :: text berjalan html 
C :: toupper function in c 
C :: how to delete virtual hard disk virtualbox 
C :: c sleep milliseconds 
C :: multiplication table in c 
C :: try and catch in rust 
C :: compare c strings 
C :: create role in psql with password 
C :: 2 dimensional array in c 
C :: typedef vs #define 
C :: solana-test-validator log 
C :: c exit 
C :: string array in c 
C :: variable swap in c 
C :: char ASCII in c 
C :: implement crc using c language 
C :: user define function in c 
C :: getline function in c 
C :: What should main() return in C? 
C :: size of int in c 
C :: *= in c 
C :: With which of the following can you run code without provisioning or managing servers and pay only for the compute time consumed (there is no charge when the code is not running)? 
C :: vscode how to output in seperate consile 
C :: anthracnose pronounce 
C :: epita 
C :: overhead computer science 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =