Answers for "how to replace a number in an array in the console for c programming"

C
3

how to replace a number in an array in the console for c programming

// Change the pointer of the array
void change(int **array, int length)
{
    *array = malloc(length * sizeof(int));
    if (*array == NULL)
        return;
    for (int i = 0 ; i < length ; i++)
        (*array)[i] = 1;
}
Posted by: Guest on July-02-2020

Code answers related to "how to replace a number in an array in the console for c programming"

Code answers related to "C"

Browse Popular Code Answers by Language