use malloc in c code example
Example 1: how to use malloc in c
ptr = (cast-type*) malloc(byte-size)
Example 2: malloc in c
int main(int argc, char *argv[])
{
int* string = NULL;
memoireAllouee = malloc(sizeof(int));
if (string == NULL)
{
return;
string[0] = 'H';
string[1] = 'e';
string[2] = 'y';
string[3] = '!';
string[4] = '\0';
printf("%s\n", string);
}
return 0;