Translation of malloc into Russian
Other
technology
- Malloc is used to allocate memory in C.Malloc используется для выделения памяти в C.
memory allocation
- Malloc is used to allocate memory for arrays.Функция malloc используется для выделения памяти под массивы.
Examples of malloc in a sentence
Developers often use malloc in their code. Malloc is essential for dynamic memory management in C. Developers often use malloc to handle memory allocation efficiently.
Translations of "malloc" in Context ordered by category and frequency
This is the 6th part, which focuses on the malloc function.
Это шестая часть, которая будет посвящена функции malloc.
Why it is important to check what the malloc function returned
Почему важно проверять, что вернула функция malloc
We decided to increase the size of the malloc to ensure better performance.
Мы решили увеличить размер выделенной памяти для обеспечения лучшей производительности.
I checked the size of the malloc before using it for my array.
Я проверил размер выделенной памяти перед использованием её для моего массива.
malloc: Examples and translations in context
Dynamic memory allocation is done by calling malloc().
Динамическое распределение памяти осуществляется с помощью команды распределения памяти malloc().
The functions malloc and calloc obtain blocks of memory dynamically.
Функции malloc и calloc динамически запрашивают блоки свободной памяти.
In this case, malloc is C's library function for memory allocation.
В данном случае malloc - это функция библиотеки C, предназначенная для выделения памяти.
This disables the memory overrun checks for each call to malloc() and free().
Эта опция заблокирует проверки переполнения памяти для каждого вызова malloc и free.
I wrote a few lines of C and understand what a pointer is, but I don't know how to use malloc or other manual memory management techniques.
Я написал несколько строк на С и понимаю, что такое указатель, но не знаю, как использовать malloc или другие методы ручного управления памятью.
Allocating and freeing memory (malloc and free)
Составить программу динамического распределения памяти (malloc и free).
Most likely, you don't have a clue what's the catch with malloc, so we recommend looking through this article.
Скорее всего, вы не догадываетесь, какой подвох связан с malloc, потому рекомендуем познакомиться с этой статьей.
In a desktop C program, a function can call malloc(), specifying how much memory is required and receive back a pointer to the storage area.
В десктопной программе на языке С функция может вызывать malloc(), указывая, сколько требуется памяти, и получать обратно указатель на область хранения.
See also: