What is the translation of " REALLOC " in Korean?

realloc
realloc에
realloc 예제

Examples of using Realloc in English and their translations into Korean

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Programming category close
  • Computer category close
This is done with the realloc function.
이것은 realloc 기능으로 행해진다.
Realloc() will change the size of a previously allocated block of memory.
Realloc ( ) 함수는 이미 할당된 메모리 블록의 크기를 변경한다.
The my_malloc and my_realloc is defined as below.
My_malloc 과 my_realloc은 다음과 같이 정의되었다.
The following program illustrates the use of malloc, realloc and free.
뒤에 오는 프로그램은 malloc, realloc의 사용을 설명하고 해방한다.
Calloc, malloc, free, realloc- Allocate and free dynamic memory.
Calloc, malloc, free, realloc - 동적 메모리 할당 및 해제.
If the size of area requested is zero,calloc() and realloc() return NULL.
요청된 영역의 크기가 0이면 calloc()realloc()가 NULL을 반환합니다.
Malloc, free, realloc, calloc, alloca, mmap- general memory allocation operations.
Malloc, free, realloc, calloc, alloca - 일반적인 메모리 할당 조작.
Unless ptr is NULL, it must have beenreturned by an earlier call to malloc(), calloc() or realloc().
만약 ptr 이 NULL 이 아니라면, 이 함수는 malloc(), calloc()이나 realloc() 에 대한 초기 호출시 반환되어야 한다.
If realloc() fails the original block is left untouched- it is not freed or moved.
만일 realloc() 이 실패한다면 원래 블럭은 건드리지 않고 남아있다 -- 해제되거나 이동되지 않는다.
The answer is C Language supports 4 library functions which are knows as memory management functions(malloc,calloc, realloc, free).
대답은 C 언어 지원 4 메모리 관리 기능으로 알려진 라이브러리 기능 (malloc,calloc, realloc, 무료).
The calloc(), malloc(), and realloc() functions accept zero as an argument.
Calloc, malloc 및 realloc 함수는 0을 인수로 수락합니다. The calloc, malloc, and realloc functions accept zero as an argument.
Free() frees the memory space pointed to by ptr,which must have been returned by a previous call to malloc(), calloc() or realloc().
Free() 함수는 ptr로 가리키는 메모리 공간을 해제하며, 이는 malloc(), calloc()또는 realloc()예제에 대한 이전 호출에 의해 반환되어야 합니다.
Otherwise, getline makes the buffer bigger using realloc, storing the new buffer address back in*lineptr and the increased size back in*n.
그렇지 않으면, getline은 realloc을 사용해서 버퍼를 크게 만든 다음, *lineptr에 새로운 버퍼의 주소를 저장하고, *n안의 크기가 증가된다.
Reallocating Memory realloc function to reallocate Reallocating Memory realloc function to reallocate, this is done with the realloc function.
기억 realloc 기능 재배치하기 위하여 재배치 재배치하기 위하여 기억 realloc 기능을 재배치해서, 이것은 realloc 기능으로 행해진다.
Memory will be allocated, a valid pointer to that memory is returned, and the memory block can be modified later by realloc.
실제 메모리가 할당되지는 않지만 유효한 포인터가 반환되고 이후에 realloc을 사용하여 메모리 블록을 수정할 수 있습니다. No actual memory is allocated, but a valid pointer is returned and the memory block can be modified later by realloc.
When a call to malloc, calloc or realloc succeeds, the returned pointer to the allocated memory should eventually be passed to the free function.
Malloc, calloc 또는 realloc에 대한 호출이 성공하면 할당된 메모리에 대한 반환된 포인터가 결국 사용 부함수보기로 전달되어야 합니다.
The realloc function takes two parameters, the base address of memory you want to resize, and the amount of space you want to reserve and returns a pointer to the base address.
Realloc 기능은 당신이 사이즈를 바꾸고 싶은 기억의 2개의 매개변수, 기반 주소, 및 당신이 그리고 기반 주소에 반환 포인터 비축하고 싶은 공간량을 가지고 간다.
On the hand, if sufficient memory(in this case 6* sizeof(int) bytes)is not available following already used bytes then realloc() re-allocates entire 11* sizeof(int) bytes of memory somewhere else in the heap and copies the content from the old memory block to the new memory block.
한편, 충분한 메모리(이 경우 6* sizeof(int)바이트)를 사용할 수 없는 경우 이미 사용된 바이트 다음에 realloc() 전체 11* sizeof(int) 바이트의 메모리를 힙의 다른 곳에서 다시 할당하고 이전 메모리 블록에서 새 메모리 블록으로 콘텐츠를 복사합니다.
When a call to malloc, calloc or realloc succeeds, the returned pointer to the allocated memory should eventually be passed to the free function.
일부 연구는 그렇지 않으면 제안. malloc, calloc 또는 realloc에 대한 호출이 성공하면 할당된 메모리에 대한 반환된 포인터가 결국 사용 부함수모범로 전달되어야 합니다.
Results: 19, Time: 0.0314

How to use "realloc" in a sentence

In the modern world, realloc serves little purpose.
Following is the syntax of the realloc function.
If realloc fails, you'd have a memory leak.
Defines a simple module to realloc (enlarge) arrays.
Avoided giant realloc for header (max is %d)!
Yes, we are actually calling realloc 10,000 times!
Usually, realloc keeps previously allocated memory block intact.
Wrong parameters of memory request by realloc function.
[FFmpeg-cvslog] lavc: fix 10l oversight in realloc of avcodec_encode_video2.
Can std::vector avoid copying if allocator provides realloc semantics?

Top dictionary queries

English - Korean